cancel
Showing results for 
Search instead for 
Did you mean: 

creating table with conditions in oracle 11g

reza840
Champ in-the-making
Champ in-the-making
create table sales_order
(orderno varchar2(6) primary key,
clientno varchar2(6),
orderdate date not null,
delyaddr varchar2(25),
salesmanno varchar2(6),
delytype char(1),
billyn char(1),
delydate date can not be less than order_date,
orderstatus varchar2(10) values('In process','Fulfilled','Backorder','Cancelled'),
foreign key(clientno) references client_master(clientno),
foreign key(salesmanno) references salesman_master(salesmanno));
————————————————————————-
what is the correct form of using conditions in oracle 11g while creating a table? Hope you'll provide a satisfactory solution to this problem. Please its urgent!!!
1 REPLY 1

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
???? I think you have a completely wrong forum