本文共 378 字,大约阅读时间需要 1 分钟。
转义字符
=
= (等于)>
> (大于)<
< (小于)<>
<>(不等于)例如:mapper文件中简单不等于代码(用户表中id不等于1的用户)
select id,name,password from user t where id <> 1 ;
纯文本类型 <![CDATA[]]>
文本框中包含的内容为纯文本
mapper文件的写法
select id,name,password from user t where id 1 ;
模糊查询
mapper文件中查询用户表中名字包含searchstring字符串中的字段select id,name,password,age from user where name like '%'||#{searchString}||'%'
转载地址:http://qggo.baihongyu.com/