您的位置:首页 > 数据库 > MySQL

mysql 包含查询

2014-03-22 18:31 260 查看
包含查询

如:表 A

id value

1 123

2 235

3 869

检索出123

select * from A where instr('1234',value);

value 包含于1234

另一种:

select * from A where instr(value,‘86’);

检索出86
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: