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
How do we get field details of a table?
What is the difference between primary key and unique key and foreign key in oracle?
What is a cognitive schema?
How to experiment a data lock in oracle?
How to install oracle database 10g xe?
How to insert a new row into a table in oracle?
When do you get a .pll extension in oracle?
Can we store images in oracle database?
how do u setup a replication site?
Explain what are clusters?
Can we create trigger on materialized view in oracle?
Can we use bind variables in oracle stored procedure?
How to upsert (update or insert into a table)?
What are the different types of failures that occur in Oracle database?
What are the system predefined user roles?