SQL> create table Orders(
2 order_ID number(5) primary key,
3 order_Date date,
4 customer_ID number(3),
5 Distributor_ID varchar2(8),
6 Distributor_Fee varchar2(6),
7 total_Due varchar2(7),
8 foreign key(customer_ID) references customer(customer_ID));
Table created.
SQL> insert into orders
2 (order_ID, order_Date, customer_ID, Distributor_ID, Distributor_Fee, total_Due)
3 values (34561, '07/04/2008', 23, 'DEN8001', '$22.00', '$145.74');
values (34561, '07/04/2008', 23, 'DEN8001', '$22.00', '$145.74')
*
ERROR at line 3:
ORA-01843: not a valid month