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
Differentiate between translate and replace?
What is the usage of control file in oracle?
How to check the oracle tns settings?
Explain the use of show option in imp command.
Can a formula column be obtained through a select statement ?
How to create a new table in oracle?
What is the sid in oracle?
How would you go about verifying the network name that the local_listener is currently using?
How to delete all rows a table in oracle?
WHAT IS THE DEFINITION OF DEFAULT CUSTOMER IN AR?
How many anonymous blocks can be defined?
15. Display the item_cost and then truncate it to the nearest hundred, ten, unit, tenth and hundredth.
How do you find out from the RMAN catalog if a particular archive log has been backed-up?
What is bulk copy or bcp in oracle?
What is an oracle database table?