mybatis查询条件能用if吗
发布网友
发布时间:2023-03-17 21:52
我来回答
共2个回答
热心网友
时间:2023-11-05 14:25
当然可以
select id, name, password
from user
where 1=1
<if test="id != null" > and id=#{id}</if>
<if test="name != null" > and name=#{name}</if>
<if test="password != null" >and password=#{password}</if>
热心网友
时间:2023-11-05 14:26
可以使用If呀