answersLogoWhite

0


Best Answer

In the table design view of SQL Server, select all the columns that make up the primary key and then select "Set as Primary Key".

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How is a concatenated primary key created?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When was Concatenated Order of Hoo-Hoo created?

Concatenated Order of Hoo-Hoo was created in 1892.


Which field MS Access will not allow you to delete?

A primary key field.A primary key field.A primary key field.A primary key field.A primary key field.A primary key field.A primary key field.A primary key field.A primary key field.A primary key field.A primary key field.


How a primary key is fixed in a sql table?

A primary key field in a sql table is created using the PRIMARY KEY keyword. ex: CREATE TABLE tbl_employee ( emp_num VARCHAR(10), emp_name VARCHAR(100), PRIMARY KEY (emp_num)) The above script creates a table called tbl_employee and sets the emp_num field as the primary key


What type of integrity is enforced when a primary key is declared?

By default a primary key is also a unique constraint, that means only one row can contain a specific value for this key (or no duplicates are allowed). Also an index is automatically created for a primary key allowing efficient access.


What is secondary indexes in dbms?

secondary index is a key which is created other than primary key, to speed up processing.


Can super key be as primary key?

I think super key is treated as the primary key because in a table their will be only one primary key.


What are the importance of primary key?

Importance of primary key


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.


What are the advantage of primary key?

Primary key that is used to identify a record uniquely. Primary key is a key that always unique and not null. A system generated primary key is called surrogate key.Primary key is the one which is always unique and not null. Advantage of primary key that it helps in identifying a tuple uniquely.


What is the primary key for the properties table?

Primary key is to set property ID as the primary key for the properties table.


Is non key is same as those key that are not primary key?

A non-key field can be any field in the table that is not the primary key. During the process of normalisation identifying non-key fields is important, as they and other fields may be moved and new tables created. Foreign keys will be left in the table.


How you create or assign primary key?

A primary key is never null and is also unique . Example of primary key is create table emp (ecode integer NOT NULL PRIMARY KEY);