赞
踩
***学习笔记***
如图:
- <!-- 处理模糊查询只能用${},若用#{}则会被解析为'%?%',包含在引号里?会被当做字符处理 -->
- <!-- 方案一:使用${} -->
- <!-- select * from t_user where username like '%${like}%'-->
- <!-- 方案二: 使用MySQL提供的concat字符串拼接函数,这是可用#{} -->
- <!-- select * from t_user where username like concat('%',#{like},'%')-->
- <!-- 方案三:使用"%""#{}%" (最常用) -->
- <!-- select * from t_user where username like "%"#{like}"%"-->
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。