SQL语法 LIMIT select col from table limit number select * from table limit number LIKE select * from table where col LIKE '%in%' select * from table where col NOT LIKE '%in%' 通配符 通配符必须与LIKE一起使用 % -- 替代一个或者多个字符 _ -- 替代一个字符 [charlist] -- 字符列中的任何单一字符 [!ch…