如何获取getdate()的日期部分?
这个问题在这里已经有了答案:
如果您正在使用SQL Server 2008或更高版本
select convert(date, getdate())
除此以外
select convert(varchar(10), getdate(),120)
尝试这个:
select convert (date ,getdate())
要么
select CAST (getdate() as DATE)
要么
select convert(varchar(10), getdate(),121)
尝试这个:
SELECT CONVERT(date, GETDATE())
链接地址: http://www.djcxy.com/p/94371.html