例如列名为 xm 里面有“李小明”“李小军”“王力宏”“刘晓娟”等.我想查找此列里面 不包含 “小”字的其他几行,语句怎么写。注意不是不等于 where xm <> '小’
1 回答
饮歌长啸
TA贡献1951条经验 获得超3个赞
select * from 表名 where xm not like "*小*"
select * from 表名 where xm <> "*小*"
select * from 表名 where not (xm="*小*")
select * from 表名 where xm not in ("*小*")
- 1 回答
- 0 关注
- 32362 浏览
添加回答
举报
0/150
提交
取消