Quote:
|
Originally Posted by francis01
I work the dates in the "dd/mm/yyyy" format, which
I have defined in Regional Settings of the O.S.
|
There are two independent things here:
- The Regional Date/Time Settings, which determine how dates are
displayed (as in SELECT datefield FROM mytable); and
- The
input format for date constants (as in ... WHERE datefield = '2007-03-27')
For the second issue, there are only three formats:
- 'yyyy-mm-dd' (the ISO format)
- 'mm/dd/yyyy' (the USA format)
- 'dd.mm.yyyy' (the EUR format)