Microsoft
Software
Hardware
Network
Question : Sql query returns 24 hour time format instead of 12 hour am/pm format:
The following query returns the datetime fields as a 24 hour format but I desire a 12 hour AM/PM format. Note: The tables referenced in the following query have all datetime fields in the 12 hour format.
DECLARE
@CurrentDate AS nvarchar(20),
@Today AS datetime
SET @CurrentDate = CONVERT(NVARCHAR(20), GETDATE(), 111)
SET @CurrentDate = @CurrentDate + ' 12:00 AM'
SET @Today = CAST(@CurrentDate AS DATETIME)
print '@CurrentDate = ' + @CurrentDate
print '@Today = ' + CAST(@Today AS VARCHAR(20))
SELECT TOP(100) dbo.T_Schedule.SCH_Date, dbo.T_Model.MDL_Number, dbo.T_ScheduleSequence.SCH
SEQ_Proces
sID,
dbo.T_ScheduleSequenceHist
ory.SSH_St
atus, dbo.T_ScheduleSequenceHist
ory.SSH_Cr
eateDate
FROM dbo.T_ScheduleSequenceHist
ory INNER JOIN
dbo.T_ScheduleSequence ON dbo.T_ScheduleSequenceHist
ory.SSH_SC
HSEQID = dbo.T_ScheduleSequence.SCH
SEQ_ID INNER JOIN
dbo.T_Model ON dbo.T_ScheduleSequence.SCH
SEQ_MDLID = dbo.T_Model.MDL_ID INNER JOIN
dbo.T_Schedule ON dbo.T_ScheduleSequence.SCH
SEQ_SCHID = dbo.T_Schedule.SCH_ID
WHERE (dbo.T_Schedule.SCH_LID = 3) AND (dbo.T_ScheduleSequenceHis
tory.SSH_C
reateDate >= @CurrentDate)
ORDER BY dbo.T_ScheduleSequenceHist
ory.SSH_Cr
eateDate
Answer : Sql query returns 24 hour time format instead of 12 hour am/pm format:
My understanding is that mysql stores time in the 24hr format but you can format the form to display in am/pm
Random Solutions
Can't access Exchange 2003 OWA from Internet
which is the best editor for oracle ?
Websense - Block Internet Access - Except for Updates
Allowing port 1935 streaming media traffic
How to find out what version of remote OpenSSL server is running?
What hardware is best suited for "number crunching" web applications?
How to use the processing core library to create a PIMAGE in Java Netbeans?
How to copy a 150 Gb database across the country?
workflow/bpm engine in python
Export Data to XML File from SQL Database