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 the difference difference between $ORACLE_HOME and $ORACLE_BASE.
How to find the duplicate rows count from employees table in oracle?
How do you bind variables in oracle?
What does sharding mean?
What are the different windows events activated at runtime ?
Explain a private synonyms?
How can we find out the current date and time in oracle?
Explain the use of inctype option in exp command.
How can we create the complete backup of data in the oracle.
Which is faster join or subquery in oracle?
How to fetch the row which has the max value for a column?
How to define an explicit cursor in oracle?
How to use attributes of the implicit cursor in oracle?
What is an oracle transaction?
List the parts of a database trigger.