Hi,
I have a small problem with date format while creating a table under oracle sql.
I want to create a table in which one of the columns will be the starting time of the movie f.e 17:30;
I typed:
create table Movie_tbl(
Movie_Id number(2),
Title char(20),
Time date);
and then I wanted to insert data:
insert into Movie_tbl
values (1, 'National Treasure', '17:30');
but it gives me back that: invalid mounth
in what way should i define the time column????
Thanks in advance..
Doti
I have a small problem with date format while creating a table under oracle sql.
I want to create a table in which one of the columns will be the starting time of the movie f.e 17:30;
I typed:
create table Movie_tbl(
Movie_Id number(2),
Title char(20),
Time date);
and then I wanted to insert data:
insert into Movie_tbl
values (1, 'National Treasure', '17:30');
but it gives me back that: invalid mounth
in what way should i define the time column????
Thanks in advance..
Doti