is there more the two primary key in a single table?

Answers were Sorted based on User's Feedback



is there more the two primary key in a single table?..

Answer / narendra singh

yes, it may be possible that a table can have more than one
primary key but except its own primary key, others are
foreign keys...........

A primary key for one table is foreign key for other table..

thank Q......

Is This Answer Correct ?    0 Yes 0 No

is there more the two primary key in a single table?..

Answer / simi

yes,
CREATE TABLE [dbo].[custrate](
[id] [int] NOT NULL,
[patname] [char](50) COLLATE
SQL_Latin1_General_CP1_CI_AS NOT NULL,
[rate] [int] NULL,
CONSTRAINT [PK__custrate__12FE9D09] PRIMARY KEY CLUSTERED
(
[id] ASC,
[patname] ASC
)WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]

Is This Answer Correct ?    0 Yes 1 No

is there more the two primary key in a single table?..

Answer / abhishek chakraborty

Yes

In Mysql

CREATE TABLE `rooms2hire`.`user data` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT ,
`email` VARCHAR( 255 ) NOT NULL ,
`name` VARCHAR( 255 ) NOT NULL ,
PRIMARY KEY ( `id` , `email` )
) ENGINE = MYISAM

Is This Answer Correct ?    0 Yes 1 No

is there more the two primary key in a single table?..

Answer / murugavel

yes
CREATE TABLE "accessmenu" (
"UID" int(11) NOT NULL DEFAULT '0',
"MID" int(11) NOT NULL DEFAULT '0',
"AlterPermission" tinyint(4) DEFAULT '0',
PRIMARY KEY ("UID","MID")
);

Is This Answer Correct ?    4 Yes 6 No

is there more the two primary key in a single table?..

Answer / laxman2610

No, One table can have only one primary key. but, if u want
u can create another one as unique with not null.

Is This Answer Correct ?    0 Yes 2 No

is there more the two primary key in a single table?..

Answer / ganesaselvam

yes

Is This Answer Correct ?    24 Yes 28 No

Post New Answer

More SQL Server Interview Questions

Tell me what do you mean by an execution plan? Why is it used? How would you view it?

0 Answers  


How does using a separate hard drive for several database objects improves performance right away?

0 Answers  


What are the hotfixes and patches in sql server?

0 Answers  


What is the difference between OLEDB and ODBC

4 Answers   CFCI,


List the ways in which dynamic sql can be executed?

0 Answers  






What is a mutating table error and how can you get around it?

0 Answers  


What are window functions in sql server?

0 Answers  


Where is my database stored on the hard disk in ms sql server?

0 Answers  


What is the difference between an index and a unique index?

0 Answers  


How will you add a dimension to cube? : sql server analysis services, ssas

0 Answers  


Which are new data types introduced in sql server 2008?

0 Answers  


how can do you the system monitoring?

1 Answers  


Categories