问题描述
- sql查询符合手机号后四位数的手机号紧急紧急!!!!!!!
- sql查询符合手机号后四位数的手机号,符合mybatis语法,要求在搜索框中打入四个数字,搜索出符合要求的手机号
解决方案
SELECT * FROM tableName WHERE telphone LIKE CONCAT(CONCAT('%' #{text}));
解决方案二:
SELECT * FROM tableName WHERE name LIKE CONCAT(CONCAT('%' #{text}) '%');或 SELECT * FROM tableName WHERE name LIKE '%${text}%';
解决方案三:
<select id=""selectByName"" parameterType=""String"" resultType=""Student""> select * from Student s where s.name like ""%""#{name}""%""; </select>
时间: 2024-10-04 21:50:11