how can I retrieve a sysdate value and display it in date and time?
I have a simple table "test" with a field datetime and datatype date.
I do an insert as follows:
==
insert into test values (sysdate);
==
now, I want to retrieve the value and use it to insert into
another table "testB"
But "testB" needs to show that the value is both date_time
value.
How can I do that.
I have a simple table "test" with a field datetime and datatype date.
I do an insert as follows:
==
insert into test values (sysdate);
==
now, I want to retrieve the value and use it to insert into
another table "testB"
But "testB" needs to show that the value is both date_time
value.
How can I do that.