现在有一个视图, 有2个查询字段startDate和endDate,startDate用户一定输入值,但endDate可能有值也可能空的,我希望
Case1: 如果 startDate,endDate都有值则 where条件是 date(字段名) between startDate and endDate
Case 2:如果endDate is null 则是date(字段名) >startDate
如果在代码和procedure中条件判断其实很简单,我想问一下可以在View 中加这种类型的判断吗?
很简单你换种想法
where条件 date(字段名) between startDate and isnull(endDate,'3000.01.01')
date>=startdate and (endDate is null or date<=endDate)
这样子?