如何将 DateTime 转换为 VarChar
我需要将 DateTime
变量中的值转换为 varchar
变量,格式为 yyyy-mm-dd
格式(没有时间部分).
I need to convert a value which is in a DateTime
variable into a varchar
variable formatted as yyyy-mm-dd
format (without time part).
我该怎么做?
推荐答案
使用 Microsoft Sql Server:
With Microsoft Sql Server:
--
-- Create test case
--
DECLARE @myDateTime DATETIME
SET @myDateTime = '2008-05-03'
--
-- Convert string
--
SELECT LEFT(CONVERT(VARCHAR, @myDateTime, 120), 10)
相关文章