1.select * from table where in ('条件一','条件二','条件三'.......)
在in 操作符中 包含的条件 不能超过1000个条件,不然话SQL 语句报错.
如果in 里面的条件超过了1000个,解决的办法是 in ( select * form table)
2. and 和 or 操作符, and 操作符优先级比 or 高,在拼接SQL 语句的时候 有时候会忘记 (条件一 or 条件二) 这个括号.