一、语法

select 查询列表

from 表名

where 筛选条件

二、筛选条件的分类

1、简单条件运算符


< = <> != >= <= <=>安全等于
2、逻辑运算符
&& and
|| or
! not
3、模糊查询
like:一般搭配通配符使用,可以判断字符型或数值型
通配符:%任意多个字符,_任意单个字符


between and

in

is null /is not null:用于判断null值

is null PK <=>

普通类型的数值 null值 可读性

is null × √ √

<=> √ √ ×