all the details of the references tables are filled.My Create Statement is :-
Im Using Oracle 10g express Edition
create table Sales_order
(
S_order_no varchar2(6) Primary key check( S_order_no like '0%'),
S_order_date Date ,
Client_no Varchar2(25) references as CLIENT_MASTER ,
Dely_add Varchar2(6) ,
Salesman_no Varchar2(6) references as SALES_MASTER ,
Dely_type Char(1) check( Dely_type in ('p','f')) default 'f',
Billed_yn Char(1),
Dely_date Date check ( Dely_date < s_order_date),
Order_status Varchar2(10) check (Order_status in ('in process','fulfilled','back order','canceled'))
)
I got the oracle error "ORA-00903: invalid table name"