mysql模糊查询
已收录文章:2篇
-
mysql 模糊查询 concat() concat() 函数,是用来连接字符串。 精确查询: select * from user where name=”zhangsan” 模糊查询; select * from user where name like “%zhang%” 在实际的使用中,条件是310 收藏
-
我们在使用like %通配符时常常会引起索引失效的问题。 这里,我们讨论一下like使用%的几种情况: 下列例子用到的索引(VC_STUDENT_NAME) 一、like ‘xx%' EXPLAIN select * from t_student where VC_STUDENT_NAME lik213 收藏