in reply to Using DBI::Sybase having problem with Date format
will convert the current date to mm/dd/yy. Although I would probably useselect convert( char(8), gedate(), 1 )
to get mm/dd/yyyy. So just change getdate() with your DATETIME column.select convert( char(10), getdate(), 101 )
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using DBI::Sybase having problem with Date format
by Anonymous Monk on May 10, 2007 at 17:18 UTC | |
by derby (Abbot) on May 10, 2007 at 17:54 UTC | |
by Anonymous Monk on May 11, 2007 at 08:40 UTC |