除去不需要的结果比如我有一列,1,1,1,1,1,1,2,2,2,3,5,6,7,89想除去带有2,5,的行 应该怎么写,谢谢[解决办法]select * from table1 where 有一列 != 2 and 有一列 != 5[解决办法]not in (2, 5), 多的话看起来方便。