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 is the difference between primary key and unique key and foreign key in oracle?
What are the different types of modules in oracle forms?
What is an oracle user account?
What to do if the binary spfile is wrong for the default instance?
How to get a list of all background sessions in the database?
Is oracle a relational database?
How different is ms access and oracle?
How to check database size in Oracle?
src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));
How do I connect to oracle?
How many categories of data types?
How do I manually uninstall oracle client?
How to update a table row with a record?
How to do a full database export?
What is the purpose of save points in oracle database?