Hello,
The date in my database is: 12/4/2002 11:45:54 AM
if i do a search this way , i don't get any result:
select * from table1 where mydate = '12/04/2002'
i succeed with this command: select * from table1 where mydate > '12/04/2002'
how can i ignore time and fetch the correct date ?
Thanks
The date in my database is: 12/4/2002 11:45:54 AM
if i do a search this way , i don't get any result:
select * from table1 where mydate = '12/04/2002'
i succeed with this command: select * from table1 where mydate > '12/04/2002'
how can i ignore time and fetch the correct date ?
Thanks