Day1之条件查询

tech2022-08-16  114

一、语法

select 查询列表 from 表名 where 筛选条件

二、筛选条件分类

1.简单条件的分类

> < = <> != >= <= <=>

<=> 安全等于:相当于=和is null的合体,即可判空,也可作为普通运算符

2.逻辑运算符

&& and || or ! not

3.模糊查询 like :一般搭配通配符使用,可以判断字符型或者数值型 通配符:%任意多个字符,_任意单个字符

between and in is null/is not null
最新回复(0)