欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mssql中得到当天数据的语句

程序员文章站 2023-11-06 23:54:10
一条例子: select count(point_id) as today_sum from point whe...
一条例子:
select count(point_id) as today_sum from point where datediff(d,point_date,getdate())=0
关键语句:
 datediff(d,point_date,getdate())=0