0


SQL SERVER 获取系统当前日期、年、月、日、时、分、秒、星期、周数

select
GETDATE() as '系统当前日期',
DateName(year,GetDate()) as '年',
DateName(month,GetDate()) as '月',
DateName(day,GetDate()) as '日',
DateName(hour,GetDate()) as '时',
DateName(minute,GetDate()) as '分',
DateName(second,GetDate()) as '秒',
DateName(dw,GetDate()) as '星期',
DateName(week,GetDate()) as '周数'

标签: sql 数据库

本文转载自: https://blog.csdn.net/weixin_46405046/article/details/131461942
版权归原作者 weixin_46405046 所有, 如有侵权,请联系我们删除。

“SQL SERVER 获取系统当前日期、年、月、日、时、分、秒、星期、周数”的评论:

还没有评论