|
Hi I have created a table which has a location and time columns
CREATE TABLE TEST
(location CHAR(20) PRIMARY KEY,
Time date );
INSERT INTO TEST VALUES
(1,TO_DATE('14:30:00','HH24:MI:SS'));
When i
select * from test;
all i get from the time column is 1-Nov-07
How do i insert the time in date field and then retrieve the entered time with a query
|