SQL如何写select提取数据库内10天内的文章?
select * from 表名 where datediff(d, 日期字段, getdate()) <= 10
函数说明:
datediff (datepart , startdate , enddate)
参数说明:
datepart
是指定所跨边界类型的 startdate 和 enddate 的一部分。下表列出了所有有效的 datepart 参数。用户定义的变量等效项是无效的。
datepart 缩写
year yy, yyyy
quarter qq, q
month mm, m
dayofyear dy, y
day dd, d
week wk, ww
hour hh
minute mi, n
second ss, s
millisecond ms
microsecond mcs
nanosecond ns