What is the difference between column level constraints and
table level constraints?
Answer Posted / gurupatham
Column Level Constraints refers Only One Column .Which does
not have the column name at declaration time .
Ex : Create table emp
( empno number primary Key,
--,
--);
Table Level constraints refers one or more than one column .
Which does have column name at declaration time.
Ex: Create table emp
( empno number ,
--,
--,
Constraints pk_con primary Key(empno));
All constraints can be created as Column and Table level
expect Not Null constraints .
Not Null constraints can only be created as column level
constraints . Does not have constraints name.
| Is This Answer Correct ? | 88 Yes | 24 No |
Post New Answer View All Answers
How to write text literals in oracle?
What happens to the indexes if a table is recovered?
List out the components of logical database structure of oracle database.
How to use an explicit cursor without open statements?
What is an index associated with a constraint?
What is the database name in oracle?
Illustrate how to determine the amount of physical CPUs a Unix Box possesses (LINUX and/or Solaris).
How to find out what oracle odbc drivers are installed?
What is index-organized table in Oracle?
Explain the difference between sap and oracle?
What are the differences between lov and list item?
what are bitmap indexes? How does they work?
Calculate difference between 2 date / times in oracle sql?
How would you begin to troubleshoot an ORA-3113 error?
What is difference between truncate and delete?