explain the type of contraints
Answers were Sorted based on User's Feedback
Answer / reva ram sahu
constraint is a rule which can not be voilated by end users.
Different types of constraints are available.They are:-
1)default constraint:-which is used to define a default
value.
2)primary key:-the key which does not allows duplication
and null values.
3)foreign key:-the key used to refer primary key defined
field in another table and it allows duplication.
4)null:-which allows NULL values.
5)not null:-which does not allows NULL values.
6)unique key:-which does not allows duplication but allows
NULL values.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / surya
Constraints are used to provide the scope to table data...
they are..
Primary key
unique key
not null
check
foriegn key
default..
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / anand
primary constraint
check constraint
notnull constraint
foreign key constraint
Is This Answer Correct ? | 0 Yes | 1 No |
Explain what are the different index configurations a table can have?
What are the two types of concurrency?
i want to create procedure for create table in sql server 2005 for example create procedure create_table @table varchar(20) as create @table( id int, name char(20) ) but it will get error what is solution?
hi i am working as a testengineer , so i want to no the backend data base connection can any one tell mwe in detail
What is a View ? Can we insert, Update and delete a view?
About types of indexes in SQL server ?
How to get a list all databases on the sql server?
Diff between Composite key, Alternate Key, Candidate Key, Primary Key, Unique Key, Super Key, Foreign Key
How to loop through returning rows?
Explain what is raid and what are different types of raid levels?
What is meant by referential integrity?
How would you retrieve Unique rows from table without using UNIQUE and DISTINCT keyword?