MyBatis中criteria的or(或查询)语法说明
程序员文章站
2022-06-18 09:47:14
目录mybatis criteria的or(或查询)语法example/criteria and or 查询mybatis criteria的or(或查询)语法其中tinnetstoragebdao继...
mybatis criteria的or(或查询)语法
其中
tinnetstoragebdao
继承了tinnetstoragebmapper
;
example/criteria and or 查询
秉着能不自己在xml里面写sql就不写的原则,今天新学习了一个姿势。
利用 example
完成and
or
的查询
public list<smscountry> querycountryname() { smscountryexample example = new smscountryexample(); criteria criteria = example.createcriteria(); //拼接and条件,如果有多个,可以直接在后面连着写 criteria.andidisnotnull().andnameisnotnull(); //拼接or条件,如果有多个or必须这样写,连着写不行 example.or().andidequalto(1); example.or().andidequalto(2); return smscountrymapper.selectbyexample(example); }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
上一篇: 我的三次创业失败经历
下一篇: 学Java的18天,今天老师讲构造方法;