Hi all,
Can someone please give me an exmple as to how to insert the current date and timestamp into a date field.
Thanks,
Leonard905
Printable View
Hi all,
Can someone please give me an exmple as to how to insert the current date and timestamp into a date field.
Thanks,
Leonard905
insert into table (date_column) values (sysdate)
create table testemp ( empno number , inserted_datetime date default sysdate);