mysql语法怎么查询以某个字符开头的数据

2024年10月02日 建站教程

mysql语法怎么查询以某个字符开头的数据,下面web建站小编给大家简单介绍一下几种不同写法!

1、利用substring截取文字查询

select * from `表名` where substring(title,1,1)='中';

2、利用like实现模糊查询

select * from `表名` where title like '中%';

//%方向代表模糊查询

本文链接:http://so.lmcjl.com/news/14428/

展开阅读全文