|
|
Question : Convert datetime to US (mm-dd-yyyy) format - MS SQL Server 2000
|
|
Hi, everybody --
Is there a way to convert the date part of a datetime value in SQL Server 2000 to US format without losing the time? For example, the following query:
select convert(char(10), datex, 110) from tblreqdsr_mdr
returns only the date part in mm-dd-yyyy format (or mm/dd/yyyy -- I don't care which one). What I need is a query string that will return the date part of the datetime value in mm/dd/yyyy format, but return the time part as well.
I tried select convert(varchar(23), datex, 110) as datex... but to no avail. It's probably because I don't know the correct format code (110, 112, 120, etc.).
Any assistance would be greatly appreciated. Thanks, - doctornick0
|
Answer : Convert datetime to US (mm-dd-yyyy) format - MS SQL Server 2000
|
|
You can do this ...
select ltrim(convert(char(10), getdate(), 110)) + ltrim(convert(char(11), getdate(), 114) )
|
|
|
|
|