首页 > 代码库 > sql获取当前时间

sql获取当前时间

有这样几种格式:
select getdate()
select Convert(varchar,getdate(),120) yyyy-mm-dd hh:mi:ss
select Convert(varchar,getdate(),23) 年月日
select DATEDIFF(day,getdate(),convert(datetime,‘2008-08-08 18:00:00‘,120)) --时间差
select DATENAME(dw,getdate())
--当前时间是一周内的第几天(中文,返回NVARCHAR型)

sql获取当前时间