如何获取getdate()的日期部分?

这个问题在这里已经有了答案:

  • 如何仅返回来自SQL Server DateTime数据类型的日期37个答案

  • 如果您正在使用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

    上一篇: How to get just the date part of getdate()?

    下一篇: How do I get just the date when using MSSQL GetDate()?