answersLogoWhite

0

Because it uniquely identifies each record in that table, No two records can have the exact same entry in the field designated as the primary key.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Why is a field with an autonumber data type not a good candidate for the foreign key field for a one to many relationship?

The foreign key has to match the information from the corresponding record in the other table.


Why does Microsoft access auto number keep resetting by itself?

When you use the compact and repair tool, the Auto Number in a table will be reset to one greater than the largest existing AutoNumber value. For example, consider a table with an AutoNumber field that has 10 rows with autonumbered values from 1 to 10. If you delete rows 6, 9, and 10, and then compact and repair the database, the AutoNumber seed will be reset to 9 (1 greater than the maximum AutoNumber value in the table, which in this example is 8). If the table has no data in it, the AutoNumber will be reset to 1.


What is the meaning of primary key in Microsoft access?

The primary key is the designation given to the field or fields that make a record unique in a table. Often times in Access an autonumber field is used as the primary key because Access will always generate a unique number for each record. Having a primary key is not a requirement but it is highly recommended that you have a primary key in each table.


How do you insert a record into the table which has an identity column?

In Microsoft Access you can insert a record directly via the table object, execute an append query, enter a record into a data bound form or write a record programatically via the recordset object. In Access an identity column is referred to as a Primary Key. If the Primary Key column's data type is set to autonumber then the column is read only and will automatically be assigned the next unique number (datatype long) within that table. If the Primary Key column's data type is NOT set to autonumber then you must provide a unique, non-null value when adding the record. Append Query on a table with an autonumber Primary Key: Insert into tbl_Test (Test_FirstName, Test_LastName) Values ('George', 'Washington') Append Query on a table with an non-autonumber Primary Key: Insert into tbl_Test (Test_Id, Test_FirstName, Test_LastName) Values (1,"George","Washington")


Candidate key and primary key differnece?

All Primary keys are definitely Candidate Keys. A Candidate key is one which can be used as a Primary key that is not null and unique. That is one of the candidate keys can be chosen as a primary key.A Candidate key is a Unique Key and it can be used to find out any particular Tuple (row) in a table. The following are the differences between A Candidate key and a Primary Key: 1) A Unique key can be null but not a Primary key 2) On a table we can have only 1 primary key but 'N' number of unique keys.


What are the differences between super key primary key candidate key and foreign key?

Super key: A set of attributes that uniquely identifies a tuple in a table. Primary key: A specific super key chosen to uniquely identify each tuple in a table and must be unique and not null. Candidate key: Any super key that could be chosen as the primary key. Foreign key: A field in a table that is a primary key in another table, used to establish a relationship between the two tables.


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.


What is the difference between primary key and candidate key?

Candidate Key is used to uniquely identify the records of a table. An attribute becomes a Primary Key, if all the other candidate keys lose race for being qualified as Primary Key.


What symbol means the field is the primary key for the table appears in front of a field in the table window?

key


Which data type is used to sequentially order each record added to a table?

AutoNumber


How can you apply the primary key?

Primary key is the one which is uniquely defined in the attributes of a table. It can be used to pull any kind of data regarding a particular tuple in the table. PRIMARY IS ALSO A CANDIDATE KEY.


When you create a table in datasheet view access automatically adds which field as the first field in the table?

The primary key.