What is the difference between column level constraints and
table level constraints?
Answer Posted / akki
column constraint is only for particular column to provide restriction,
where in table level constraint we define multiple constraint at same time except not null .
not null is only used for column level.
ex: create table customer(cust_id number(2) not null,cust_name varchar2(20)check(cust_name like 'C%');
above example is shows constraints on column level.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What privilege is needed for a user to query tables in another schema?
Can we use bind variables in oracle stored procedure?
Why is oracle database so popular?
What is a proxy object?
How to pass parameters to procedures in oracle?
List the types of joins used in writing subqueries?
How to get execution path reports on query statements?
What are the different editions of oracle?
How to convert numbers to characters in oracle?
How to export several tables together?
When system tablespace is created?
How to see the table columns used in an index?
Please explain drop constraint oracle?
How to create an oracle database?
What is oracle in java?