日期返回为1-7周的星期几

时间:2012-11-28 15:41:35

标签: sql ms-access

我在使用SQL中的星期数函数时遇到了困难。我经常使用的excel等价物是......

=WEEKDAY("datevalue",1)

这当然会返回Sunday = 1,Monday = 2等...什么是Access Sql等价物?

4 个答案:

答案 0 :(得分:2)

我相信您正在寻找DatePart

DatePart ("w", date)

Reference

答案 1 :(得分:2)

这足以得到所需的答案。

weekday(date)

答案 2 :(得分:1)

这会有所帮助

DATEPART(dd, date)

Returns int

答案 3 :(得分:0)

是datepart()

  

例如

     

DatePart(“yyyy”,#15/10/1998#)将于1998年返回

     

DatePart(“m”,#15/10/2003#)将返回10

     

DatePart(“d”,#15/10/2003#)将返回15