1 判断运算符: =、>、<、>=、<=、!=
select * from 表名 where 条件表达式;
2 多条件查询:and、or
select * from 表名 where 条件表达式1 and 条件表达式2;
select * from 表名 where 条件表达式1 or 条件表达式2;
select * from 表名 where 条件表达式;
select * from 表名 where 条件表达式1 and 条件表达式2;
select * from 表名 where 条件表达式1 or 条件表达式2;