select * from table where name like "%123%";这样是查询出 名字中包含123 的数据,我如果要查询名字中不包含123的数据 怎么查呢?select * from table where name no like "%123%"; 好像不行。