当前位置 : 主页 > 编程语言 > python >

高效模糊查询like

来源:互联网 收集:自由互联 发布时间:2023-03-22
不多说,直接上代码。 select * from table where name like '%王大锤%'; select * from table where LOCATE(‘王大锤’,name)0;

不多说,直接上代码。

select  * from table where name like '%王大锤%';

select * from table where LOCATE(‘王大锤’,name)>0;

上一篇:Linux启动/停止/重启Mycat
下一篇:没有了
网友评论