MySQL使用IF函数动态执行where条件的方法
短信预约 -IT技能 免费直播动态提醒
IF函数
IF(expression ,expr_true, expr_false);
mysql的IF()函数,接受三个表达式,如果第一个表达式为true,而不是零且不为NULL,它将返回第二个表达式。否则,它返回第三个表达式。根据使用它的上下文,它返回数字或字符串值。
IF函数在WHERE条件中的使用
先来看一个SQL:
select book_name,read_status from t_book;
结果如下:
read_status字段意思是阅读状态,有以下几个值: 0(未阅读),1(阅读中),2(已阅读)。
下面使用IF函数来查询:
# 查询未阅读的book
select book_name,read_status from t_book where IF(-1 = 0, true, read_status = 0);
# 查询阅读中的book
select book_name,read_status from t_book where IF(-1 = 1, true, read_status = 1);
# 查询已阅读的book
select book_name,read_status from t_book where IF(-1 = 2, true, read_status = 2);
# 查询全部的book
select book_name,read_status from t_book where IF(-1 = -1, true, read_status = -1);
JAVA使用
@Query(value = "select book_name,read_status from t_book where IF(-1 = :readStatus, true, read_status = readStatus)", nativeQuery = true)
List<TBook> queryByReadStatus(@Param("readStatus") String readStatus);
这样可以通过传入readStatus的值来控制是否执行read_status条件,当传值为-1时,不执行read_status = -1 条件,而是执行 true,相当于忽略了read_status条件,达到查询全部状态的book目的。
到此这篇关于MySQL使用IF函数来动态执行where条件的文章就介绍到这了,更多相关MySQL动态执行where条件内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341