我想进入check date
或between two dates
可以作为NULL
使用存储过程传递
代码
declare @fromDate date = null
declare @toDate date = null
select * from Mytable
where date betweeen @fromDate and @toDate OR NULL (how to check for both parameters)
我还有另外 2 个参数,所以无论日期结果如何都应该显示。如果 @todate 和 @fromDate 为 NULL
请帮忙。