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
What is difference between cartesian join and cross join?
Can objects of the same schema reside in different tablespace?
What is tns name?
What are the limitations oracle database 10g xe?
What is redo log?
How to execute a stored procedure in oracle?
Explain the use of tables option in exp command.
Explain an index?
How can we delete duplicate rows in a table?
What are the execution control statements?
How to experiment a data lock in oracle?
Can we use oracle pl/sql block in core java? if so how? pls get back to me .....
What do you mean by group by clause?
Why do we use bulk collect in oracle?
Explain oracle insert into command?