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
HI, Please let me know the syllabus for Oracle OCA and OCP Certification
if you ctreate table identity
What is a view and how is it different from a table?
What is oracle datasource?
Explain the types of exception?
How do I spool to a csv formatted file using sqlplus?
Explain how you would restore a database using RMAN to Point in Time?
What is the parameter mode that can be passed to a procedure?
Explain a data segment?
What do you know about normalization? Explain in detail?
Tab A A B ------ 1 A 2 B 3 C Tab B A B ----- 4 D 5 E 6 F Generate the value into B table from A table. Only table A has the value. Write the SQL query to get B table value.
What is a cursor and what are the steps need to be taken?
WHAT IS ecc 6.0
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
Select all the employees who were hired in last 2 years and who works in dept where max managers are working.