mybatis之动态sql——if、where、foreach、choose、set
目的
简化sql语句的拼串操作。
if语句
<select id="findAllEmp" resultType="com.xzy.bean.EmpInfo">
select * from emp where
/*test="" 编写判断条件,
id!=null :取出Javabean属性当中的id值,判断是否为空
*/
<if test="id!=null">
id
原创
2020-08-05 22:13:47 ·
194 阅读 ·
0 评论