What is the difference between column level constraints and
table level constraints?
Answer Posted / rajan sharma
Column level are those constraints that are inserted after
the declaration of the data typeot
Syntax :
CREATE TABLE table_name
(Column_name Datatype NOT NULL )
Example : Not null,pimary key,foreign key, unique and check.
Table level constraints are those that are inserted at the
end of the table.
Example : pimary key,foreign key, unique and check.
Thanks
| Is This Answer Correct ? | 21 Yes | 4 No |
Post New Answer View All Answers
What is the disadvantage of User defind function?
Name the three major set of files on disk that compose a database in Oracle?
What is a snapshot log?
Why does for update in oracle 8 cause an ora-01002 error?
Why is oracle so popular?
What is coalesce function?
How to shutdown your 10g xe server?
Is it possible to insert comments into sql statements return in the data model editor ?
what is reindexing?
What are the uses of Database Trigger ?
Point out the difference between user tables and data dictionary?
How to create a table index?
What are the general rules on data consistency?
Is there any function in oracle similar like group_concat of mysql?
Why packages are used in oracle?