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 the 9i dbms_standard.sql_txt() and dbms_standard.sql_text() procedures do?
Explain an index?
Point the difference between translate and replace?
How to create a stored procedure in oracle?
Will you be able to store pictures in the database?
how do we code triggers , store procedure , Performance tuning and indexing in a Java Project? Pls kindly get me the perfect answer with the code for each....thank you in advance............pls any body kindly help me soon as possible....
What is the difference between truncate & delete command?
How many categories of data types?
Explain oracle’s server parameter file.
How to check database size in Oracle?
Explain the characteristics of oracle dba?
What is transport network substrate (tns) in oracle?
Which is better Oracle or MS SQL? Why?
How do I start tns listener?
What do you mean by merge in oracle and how can you merge two tables?