如何使用参数进行过滤但保留 NULL?
我希望能够传入参数列表,并忽略 NULL 的参数。 这样查询实际上就假装过滤器不存在并忽略它。 我的问题是,我正在过滤的列do接受 NULL,但如果我使用类似的内容,所有 NULL 字段都会被删除。
WHERE column = Case WHEN NULL column ELSE @parameter END
I want to be able to pass in a list of parameters, and ignore the ones which are NULL. So that the query is in effect pretending that the filter isn't there and ignoring it. My problem is that the columns I'm filtering do accept NULLs, but if I use something like this, all the NULL fields are removed.
WHERE column = Case WHEN NULL column ELSE @parameter END
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个稍微好一点的选择是测试:
这利用了 SQL 的内置短路功能,除非应该,否则不会评估列。
A slightly better option is to test:
This takes advantage of SQL's built-in short-circuiting, and doesn't evaluate the column unless it should.
类似 WHERE (@parameter IS NOT NULL AND column = @parameter) AND ... 根据需要重复...
What about something like WHERE (@parameter IS NOT NULL AND column = @parameter) AND ... repeat as required...