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
What do you mean by merge in oracle and how can you merge two tables?
How to use "in" parameter properly?
What is the simplest tool to run commands on oracle servers?
Difference between open_form and call_form in oracle.
When system tablespace is created?
What is user managed backup in Oracle?
What is the max number of columns in an oracle table?
Can we create database in oracle using command line ?
Explain an exception and its types?
Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?
Explain implicit cursor.
How can I convert single byte kana characters into multi byte kana characters and vice-versa.
Is oracle the best database?
What is Reduced List of Values?
What is a select query statement in oracle?