本文介绍了sql server命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这不起作用:
this doesn''t work:
Select * from Orders2 where quarter([OrderDate]) >= 1 AND year([OrderDate]) >= 2010 and quarter([OrderDate])<=12 and year([OrderDate]) <= 2011
what is the command for quarter?
推荐答案
SELECT DATEPART(quarter, OrderDate)
--OR
SELECT DATEPART(qq, OrderDate)
--OR
SELECT DATEPART(q, OrderDate)
这篇关于sql server命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!