在 SQL Server 2005/2008 中获取星期几

2021-12-02 00:00:00 datetime sql sql-server

如果我有一个日期 01/01/2009,我想知道它是哪一天,例如周一、周二等...

If I have a date 01/01/2009, I want to find out what day it was e.g. Monday, Tuesday, etc...

在 SQL Server 2005/2008 中是否有内置函数?还是需要用辅助表?

Is there a built-in function for this in SQL Server 2005/2008? Or do I need to use an auxiliary table?

推荐答案

使用 DATENAMEDATEPART:

SELECT DATENAME(dw,GETDATE()) -- Friday
SELECT DATEPART(dw,GETDATE()) -- 6

相关文章