//最新商品
商品录入时间与现在时间相差小于7天的商品(最近一周)
Create proc proc_NewGoods
as
select * from tb_BookInfo
where DATEDIFF(day, LoadDate, getdate()) < 7
//最新商品
商品录入时间与现在时间相差小于7天的商品(最近一周)
Create proc proc_NewGoods
as
select * from tb_BookInfo
where DATEDIFF(day, LoadDate, getdate()) < 7