The following 2 queries produce the same results (order of year does not matter):
select * from Drawing_title where dwg_maint_date> '01-02-2008'
select * from Drawing_title where dwg_maint_date> '2008-01-02'
You may also reference the time in your query:
select * from Drawing_title where dwg_maint_date> '2008-01-02 08:00:00' order by dwg_maint_date...
Leave a comment: