Hi All
I have the following query that brings back data greater than 01/02/2008. However, its reading it in American Format i.e. mm/dd/yyyy
In my table I have it in the UK format i.e. dd/mm/yyyy. I want the query to return the results in?
I know that its easy just to change the query to American format, but i prefer to just type the UK format in and get the results back.
Thanks
SELECT productname, date
FROM orders
WHERE date > #01/02/2008#
I have the following query that brings back data greater than 01/02/2008. However, its reading it in American Format i.e. mm/dd/yyyy
In my table I have it in the UK format i.e. dd/mm/yyyy. I want the query to return the results in?
I know that its easy just to change the query to American format, but i prefer to just type the UK format in and get the results back.
Thanks
SELECT productname, date
FROM orders
WHERE date > #01/02/2008#