is there more the two primary key in a single table?
Answer Posted / 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 |
Post New Answer View All Answers
why would you use sql agent? : Sql server database administration
What stored by the msdb? : sql server database administration
What are acid properties of transaction?
What is the report builder?
Why would you use sql agent?
How to get a list all databases on the sql server?
What are ddl triggers and types of ddl trigger?
How can we solve concurrency problems?
How to delete existing triggers using "drop trigger"?
Is mysql the same as sql server?
What do you understand by mirroring and mention the advantages of the mirroring?
What is amo? : sql server analysis services, ssas
How do I start sql server 2017?
What is the difference between functions and scalar functions?
What is triggers and its types?