现在有一个视图, 有2个查询字段startDate和endDate,startDate用户一定输入值,但endDate可能有值也可能空的,我希望
Case1: 如果 startDate,endDate都有值则 where条件是 date(字段名) between startDate and endDate
Case 2:如果endDate is null 则是date(字段名) >startDate
如果在代码和procedure中条件判断其实很简单,我想问一下可以在View 中加这种类型的判断吗?
2 回答
牛魔王的故事
TA贡献1830条经验 获得超3个赞
很简单你换种想法
where条件 date(字段名) between startDate and isnull(endDate,'3000.01.01')
- 2 回答
- 0 关注
- 865 浏览
添加回答
举报
0/150
提交
取消