what is Constraint? How many types of constraints in SQL ?
Answer Posted / pramod tiwari,mba-it,lpu
SQL Constraints-
Constraints are used to limit the type of data that can go
into a table.
Constraints can be specified when a table is created (with
the CREATE TABLE statement) or after the table is created
(with the ALTER TABLE statement).
We will focus on the following constraints:
•NOT NULL
•UNIQUE
•PRIMARY KEY
•FOREIGN KEY
•CHECK
•DEFAULT
Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Difference between DELETE and TRUNCATE?
How do indexes help, types?
What do you understand by a view? What does the with check option clause for a view do?
difference between Clustered index and non clustered index ?
Can you explain what is indexed view? How to create it?
Why normalization is used?
how do you implement one-to-one, one-to-many and many-to-many relationships while designing tables? : Sql server database administration
Can you change the data type of a column in a table after the table has been created? If so, which command would you use?
what are different types of backups available in sql server? : Sql server database administration
How to create an index on an existing table in ms sql server?
In what three ways is the return statement used in a stored procedure?
What are user-defined functions (udfs) in sql server?
What are the advantages of the mirroring?
On a windows server 2003 active – passive failover cluster, how do you find the node which is active?
What is user-defined multi-statement table-valued function?