Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面就为大家简单介绍一下。
我需要将结果转换成GetDate()这种格式:YYYY-MM-DD直接在 SQLServer2008 中。
GetDate()
YYYY-MM-DD
但我在这里找不到我要找的那个。
提前致谢。
诀窍是截断以您想要的格式开头的文件。一种方法是将其转换为仅包含所需字符数量的字符串类型:
SELECT CONVERT(CHAR(10), GETDATE(), 120);
请参阅下面用于转换日期信息的格式