i have the following example
create table Test (
C1 nvarchar(50) not null,
C2 number,
C3 date);
insert into Test(C1,C2,C3) select (v1,v2,v3)from emp ;
i want to add validations not to insert null values for C1, not to insert string for C2, insert dates only for C3.
any idea to do that in pl/sql?
thanks