例如列名为 xm 里面有“李小明”“李小军”“王力宏”“刘晓娟”等.我想查找此列里面 不包含 “小”字的其他几行,语句怎么写。 注意不是不等于 where xm <> '小’
元芳怎么了
浏览 32363回答 1
1回答
饮歌长啸
select * from 表名 where xm not like "*小*"select * from 表名 where xm <> "*小*"select * from 表名 where not (xm="*小*")select * from 表名 where xm not in ("*小*")