I need to create a view showing orders from 2001
This is the format that my dates were entered into the records with:
declaration:
date date_ordered;
data:
'11/SEP/01'
So in my where statement I have written:
where date_ordered >= '01/jan/01'
This should give me only orders that were ordered at least by jan 1, 2001. but its giving me an error:
ORA-00933: SQL command not properly ended
what am i doing wrong?
This is the format that my dates were entered into the records with:
declaration:
date date_ordered;
data:
'11/SEP/01'
So in my where statement I have written:
where date_ordered >= '01/jan/01'
This should give me only orders that were ordered at least by jan 1, 2001. but its giving me an error:
ORA-00933: SQL command not properly ended
what am i doing wrong?