answersLogoWhite

0

Yes it depends on what calculator you got but most of them you do.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What not a likely primary key?

A field that is not unique and null can not be used as a primary key. Praimary key must satisfy the conditions of not null and unique.


What is difference between null value and not null value?

In databases: Null Value: Represents the absence of a value or an unknown value. It indicates that the data is missing or not applicable. Not Null Value: Indicates that a field contains a valid, defined value. It means the data is present and has been explicitly set.


Can you insert primary key only to one field in the database?

Yes. Primary key can be inserted to one field in the database. The field should be unique and not null.


What are field can be used as primary key?

A field or set a of fields Êin a database tableÊwith unique values Êcan be used as a primary key.ÊPrimary key field cannot have a null value.


What does the primary key in a data base do?

We know that primary key is the one that is not null and is always unique. A primary key uniquely identifies a record in a table.


Can a primary key refer to a whole table?

No, a primary key do not refers to the whole table .A primary key refers to a field in the table that is not null and unique.


Features of primary key?

* In NOT NULL constraint the particular data cannot be NULL,* In UNIQUE constraint the same thing cannot be repeated, it must be unique,* The primary key is simply the combination of both these constraints.


What a field that uniquely identifies each field?

A primary key is a field that uniquely identifies each record in a database table. It must have a unique value for each record and cannot have null values. This key is essential for enforcing data integrity and for efficiently retrieving and updating records.


Does primary key allows null value?

No. A primary key requires a value because it is the field that all other values in the row depend on.


what field is used as a primary key?

We explicitly choose a primary key.A primary key should satisfy the following conditions: 1) it should not be null 2) it should be unique.


What is primary key in information system?

A primary key is a unique identifier for each record in a database table. It ensures that each record can be uniquely identified and helps maintain data integrity by preventing duplicate records. The primary key is used to establish relationships between tables in a relational database.


What is meant by a mandatory field?

a mandatory field in a database is one created in a table as "Not null". This means, there is a "rule" on the field that when data is inserted into the table, this field cannot be empty. If it is, then the insert errors. Here's part of a table definition in my database. These field are are required to be populated when inserting into this table. ATTR_DESC_01 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_02 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_03 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_04 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_05 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_06 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_07 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_08 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_09 CHAR(2) DEFAULT SYSTEM NOT NULL, ATTR_DESC_10 CHAR(2) DEFAULT SYSTEM NOT NULL, PARTITION_NBR SMALLINT NO DEFAULT NOT NULL)