answersLogoWhite

0


Best Answer

Primary keys are used in databases to uniquely identify records. No two records can have the same primary key. This means that there is a way of distinguishing records that have similar details, like if you have a database with lots of names and there are some people in it who have the same name. Every record must have a primary key. It cannot be left blank, because it is needed to identify each record. Primary keys are also important in relational databases when relationships are being built between tables. A record in one table can refer to the primary key in another to establish the link to the correct record.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is computer primary keys?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What the differences between primary key and foreign key?

A primary key is a unique identifier for a record in a table and ensures each record is uniquely identified. A foreign key establishes a relationship between two tables by referencing the primary key in another table. It enforces referential integrity by ensuring that the values in the foreign key column correspond to values in the primary key column of another table.


Do Primary keys have to be numbers that are entered by the user?

Primary keys have to be numbers that are entered by the user.


How many primary keys can a table have?

A table can have only one primary key. But, it can have multiple unique keys.


What are the keyboard symbols called?

Keys - as in a board of keys = keyboard


What are the three keys that you press to log on to the computer?

three keys to log on to the computer?


How many Keys on a computer?

78 Keys


A notebook computer has how many keys?

It depends on your notebook. My notebook has 80 keys, my friends notebook has 84 keys. A standard computer keyboard has 107 keys.


How much types of keys are available in dbms?

There are five types of keys in database management system . The name of the five keys are as follows .:1) surrogate key -which is the system generated primary key .2) Primary key - same function as surrogate key but user defined.3) candidate key -combination of two more keys.4) alternate keys - alternative for candidate keys.5) foreign key - primary key of another table.There are five types of keys in database management system.These five keys are surrogate, primary, candidate, alternate, foreign keys .


What is the meaning for primary key in database?

With reference to Databases, what are Primary keys?


What are the basic components of a database?

Tables, Entities, Attributes, Primary Keys, and Foreign Keys


How many keys on a full-sized computer keyboard?

There are 107 keys in a full-sized computer keyboard.


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.