There are two doubts regarding integrity constraints :
1) Can the constraints "NOT NULL" and "DEFAULT" be assigned at table level ? i have tried using the syntax of CHECK constraint at table level,
and also the syntax of PRIMARY KEY constraint at table level,
i tried same syntax for DEFAULT constraint too.but it doesn't work. please let me know if both constraints are possible at table level.
2) i am not sure if this question is related to integrity constraints...h onestly, i don't know even its meaning .....What is LMS ? is it related to locking tables ?
i tried searching for both my doubts , didn't help.
Thanks for reading the post.
1) Can the constraints "NOT NULL" and "DEFAULT" be assigned at table level ? i have tried using the syntax of CHECK constraint at table level,
Code:
constraint con1 not null (emp_id));
Code:
not null (emp_id));
2) i am not sure if this question is related to integrity constraints...h onestly, i don't know even its meaning .....What is LMS ? is it related to locking tables ?
i tried searching for both my doubts , didn't help.
Thanks for reading the post.
Comment