比较运算符 select * from 表名 where 列名=或>或<或<=或>=或<>或!= 条件
逻辑运算符 select *from 表名 where 条件1 and($$) 或者or(||)或者not(!) 条件2
指定范围查询 in select *from 表名 where 列名 [not] in(条件1,条件2,条件3......)
范围 select * from 表名 where 列名 between 条件1 and 条件2
注: (闭区间 运行效率大于 >= and <=)
模糊查询 select * from 表名 where 字段名 like '通配符字符串'
注:通配符字符串: %表示0个或者多个字符(任意一个字符) _ 表示一个字符
为空查询 select *from 表名 where 列名 is null