sql如何按日期中的月份查询
展开全部
可使用SQL
datediff
(时间差)来查询某个月份,这是最简的方法:
DATEDIFF
函数
功能
返回两个日期之间的间隔。
语法
DATEDIFF
(
date-part,
date-
expression
-1,
date-expression-2
)
date-part
:
year
|
quarter
|
month
|
week
|
day
|
hour
|
minute
|
second
|
millisecond
参数
date-part
指定要测量其间隔的日期部分。
要获取某个月的SQL为如下:
select
*
from
table
where
datediff(month,date_ColName,'2014-12-1')=0
date_ColName:为表中的日期格式的列
'2014-12-1':此为你要查询的某个月的日期格式。
datediff
(时间差)来查询某个月份,这是最简的方法:
DATEDIFF
函数
功能
返回两个日期之间的间隔。
语法
DATEDIFF
(
date-part,
date-
expression
-1,
date-expression-2
)
date-part
:
year
|
quarter
|
month
|
week
|
day
|
hour
|
minute
|
second
|
millisecond
参数
date-part
指定要测量其间隔的日期部分。
要获取某个月的SQL为如下:
select
*
from
table
where
datediff(month,date_ColName,'2014-12-1')=0
date_ColName:为表中的日期格式的列
'2014-12-1':此为你要查询的某个月的日期格式。
展开全部
当前是指今天的日期吗?
select
*
from
表
where
录入时间>(case
when
month(getdate())<=6
then
cast(year(getdate())
as
nvarchar(4))
+
'-1-1'
else
cast(year(getdate())
as
nvarchar(4))
+'-7-1'
end)
and
录入时间<=(case
when
month(getdate())<=6
then
cast(year(getdate())
as
nvarchar(4))
+
'-6-30'
else
cast(year(getdate())
as
nvarchar(4))
+'-12-31'
end)
select
*
from
表
where
录入时间>(case
when
month(getdate())<=6
then
cast(year(getdate())
as
nvarchar(4))
+
'-1-1'
else
cast(year(getdate())
as
nvarchar(4))
+'-7-1'
end)
and
录入时间<=(case
when
month(getdate())<=6
then
cast(year(getdate())
as
nvarchar(4))
+
'-6-30'
else
cast(year(getdate())
as
nvarchar(4))
+'-12-31'
end)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询