我想从DateTime列使用SQL查询只得到时间 使用SQL Server 2005和2008 默认的输出:
AttDate
==
2011-02-09 13:09:00
2011-02-09 14:10:00
我想要这样的输出:
AttDate Time
==
2011-02-09 13:09:00 13:09
2011-02-09 14:10:00 14:10
我想从DateTime列使用SQL查询只得到时间 使用SQL Server 2005和2008 默认的输出:
AttDate
==
2011-02-09 13:09:00
2011-02-09 14:10:00
我想要这样的输出:
AttDate Time
==
2011-02-09 13:09:00 13:09
2011-02-09 14:10:00 14:10
当前回答
试试这个,它会起作用的:
CONVERT(VARCHAR(8),DATETIME,114)
供您参考。
其他回答
如果你想要这样的约会方式:2013年10月23日上午10:30
使用这个
SELECT CONVERT(NVARCHAR(30),getdate(), 100)
Convert()方法有3个参数
数据类型 列/值 款式:可选款式从100到114。你可以在范围内选择。依次选择可更改日期格式。
select convert(char(5), tbl_CustomerBooking.CheckInTime, 108) AS [time]
from tbl_CustomerBooking
select cast (as time(0))
这是一个很好的条款。例如:
(select cast(start_date as time(0))) AS 'START TIME'
试试这个:
select convert(nvarchar,CAST(getdate()as time),100)
试试这个
时间日期 Select cast(getdate() as time(0)) 时间到TinyTime 选择强制转换(orig_time作为时间(0))