how to remove time from datetime

前端 未结 10 1622
清酒与你
清酒与你 2020-12-01 10:18

The field DATE in the database has the following format:

2012-11-12 00:00:00

I would like to remove the time from the date and return the d

10条回答
  •  -上瘾入骨i
    2020-12-01 11:02

    TSQL

    SELECT CONVERT(DATE, GETDATE())         // 2019-09-19
    SELECT CAST(GETDATE() AS DATE)          // 2019-09-19
    SELECT CONVERT(VARCHAR, GETDATE(), 23)  // 2019-09-19
    

提交回复
热议问题