What is the difference between column level constraints and
table level constraints?
Answer Posted / riddhi
Difference between column level constraints and table level constraints
1)Column level constraint is declared at the time of creating a table but table level constraint is created after table is created.
2)Column Level Constraints refers Only One Column whereas table level constraints refers to one or more than one column
3)not null constraint can't be created as table level constraints because it don't have name.
Column level constraint-
Ex : Create table emp
( empno number primary Key);
Table level constraint
Ex: Create table emp
( empno number);
Constraints pk_con primary Key(empno));
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can objects of the same schema reside in different tablespace?
What is connection pooling in oracle?
What is BBED in Oracle?
How to do paging with oracle?
what are actual and formal parameters?
Why does for update in oracle 8 cause an ora-01002 error?
Explain the difference between replace() and translate() functions in oracle?
How to load excel data sheet to oracle database
What is a connect identifier?
What are the execution control statements?
Explain compound trigger in oracle?
How to invoke the data pump export utility?
How to invoke the data pump import utility?
List out the components of logical database structure of oracle database.
How to create a testing table in oracle?