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.
我现在正在创建视图,我只需要显示正常 DateTime 中的 YEAR 我该怎么做才能只返回 Year 作为值?我已经用 EXTRACT 尝试过,但不知何故它不起作用.. 感谢您的帮助和快速回答
使用YEAR()功能
YEAR()
SELECT YEAR(MyDateCol) FROM MyTable
您可以使用DATEPART()从日期时间值中提取年份。
DATEPART(YEAR,GETDATE());
查看SQLFIDDLE
年份功能
SELECT YEAR(getdate()) SELECT YEAR(columnname) from yourtablename