在数据库中如何查询当天的数据?

在数据库中如何查询当天的数据?,第1张

以sqlserver为例,假设日期字段为saledate,则当天sql如下:

select * from [LHDDXkms].[dbo].

[ST_ PPTN _ R ] where STCD =60432099

and DateDiff(dd,saledate,getdate())=0

其他日期,变更最后的and后面即可。

昨天:and DateDiff(dd,saledate,getdate())=1

一周:and DateDiff(dd,saledate,getdate())<=7

一月:and DateDiff(mm,saledate,getdate())=0

1、SQL在查询当天记录时要注意是从当天的0点0分0秒0毫秒开始,到次日0点0分0秒0毫秒截止,但不包含次日的0点0分0秒0毫秒。

2、注意:在不同数据库产品中,获得当天日期的函数不一样。

MSSQL获得当前日期:convert(varchar(10),Getdate(),120)

MYSQL获得当前日期:date(now())

Oracle获得当前日期:to_char(sysdate,'yyyy-mm-dd')

Access获得当前日期:date()

3、在各个数据库里获得当天的记录写法为(假设表名为:Table_1,日期列名为:date_col):

  MSSQL获得当天记录:

select * from table_1 where date_col>=convert(varchar(10),Getdate(),120) and date_col<convert(varchar(10),dateadd(d,1,Getdate()),120)

  MYSQL获得当天记录:

select * from table_1 where date_col>=date(now()) and date_col<DATE_ADD(date(now()),INTERVAL 1 DAY)

Oracle获得当天记录:

select * from table_1 where date_col>=to_char(sysdate,'yyyy-mm-dd') and date_col<to_char(sysdate+1,'yyyy-mm-dd')

  Access获得当天记录:

select * from table_1 where date_col>=date() and date_col<DateAdd("d",1,date())

4、另外,在查询的时候,尽量不要对列进行运算,因为日期列上若有索引,就无法使用索引了。

查询当天的数据的方法是:

select *

from tabname

where trunc(dtcol) = trunc(sysdate)

或者:

select *

from tabname

where dtcol >= trunc(sysdate) and dtcol <trunc(sysdate) + 1


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6757081.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-27
下一篇 2023-03-27

发表评论

登录后才能评论

评论列表(0条)

保存