evergreean43
Technical User
I inserted info into my Oracle 8i database.
I can query and see the records except the date field doesnt show any data.
Here is my insert:
When I query I see:
Please advise.
I can query and see the records except the date field doesnt show any data.
Here is my insert:
Code:
insert into myTable (id, name, date) values (1,'Joe',To_Date('7/11/2002','DD/MM/YYYY');
commit;
When I query I see:
Code:
ID Name Date
1 Joe
Please advise.