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 do you understand by a database object?
What is the difference between translate and replace?
How to delete a column in an existing table?
How many types of tables are there in oracle?
Can we connect to ORACLE db using Windows Authentication?
What are the limitations of check constraint?
What happens to the data files if a tablespace is dropped?
What is the difference between "as" and "is" in an oracle stored procedure?
How to run the anonymous block again?
What privilege is needed for a user to create indexes in oracle?
What is a snapshot in oracle database?
Explain the use of full option in exp command.
Explain the different normalization forms?
Explain the use of rows option in imp command.
Explain overloading. Can functions be overloaded?