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 are the different types of synonyms?
What happens to the indexes if a table is recovered?
How to convert dates to characters in oracle?
What is Redo Log Buffer in Oracle?
what is the use of system.effective.date variable in oracle?
What is a nested table?
An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?
How can we view last record added to a table?
How do we represent comments in oracle?
What are the differences between blob and clob in oracle?
How to connect to a local oracle 10g xe server?
IS it possible to built the oracle database without setting the kernal parameters?
How to grant create session privilege to a user in oracle?
Explain oracle’s system global area (sga).
What is a sub query? What are its various types?