Answer Posted / saravakumar
USE [AdventureWorks]
GO
ALTER TABLE [Sales].[Individual]
ADD CONSTRAINT [PK_Individual_CustomerID]
PRIMARY KEY CLUSTERED
(
[CustomerID] ASC
)
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain about sql server login?
What is primary key and example?
What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?
How can you find out how many rows returned in a cursor?
Is sql server a database?
What is a constant or literal in ms sql server?
what is an extended stored procedure? : Sql server database administration
Define a cross join?
How are the exceptions handled in sql server programming?
A trigger can reference objects outside the current database? State true or false.
where can you add custom error messages to sql server? : Sql server administration
How to write a query with an inner join in ms sql server?
What will happen if a column containing char type data is changed to the nchar data type?
How to insert data into an existing table?
Write a sql query to display the current date?