数据库
首页 > 数据库> > SQLSERVER返回当前日期是星期几的函数datepart

SQLSERVER返回当前日期是星期几的函数datepart

作者:互联网

datepart 返回数值;

例子:

select
case datepart(dw,getdate())
when 1 then '星期天 ’
when 2 then '星期一 ’
when 3 then '星期二 ’
when 4 then '星期三 ’
when 5 then '星期四 ’
when 6 then '星期五 ’
when 7 then '星期六 ’
end

标签:星期,返回,datepart,end,SQLSERVER,when,select
来源: https://blog.csdn.net/qq_37233070/article/details/111831664