数据库
首页 > 数据库> > SQL基础

SQL基础

作者:互联网

聚集函数

函数

说明

avg()

返回某列的平均值

count()

返回某列的行数

max()

返回某列的最大值

min()

返回某列的最小值

sum()

返回某列之和

  where子句的操作符

操作符

说明

=

等于

<>

不等于

!=

不等于

>

大于

<

小于

>=

大于等于

<=

小于等于

between... and ...

介于两者之间

in

在给定的值之内

like

模糊匹配

 

检查空值

使用 is null 来检查空值。

SELECT name,python_score FROM score
-- 过滤Python成绩为 空的信息
WHERE python_score is NULL;

同样使用 is not null  来过滤非空;

SELECT name,python_score FROM score
WHERE python_score is NOT NULL;

 

 

标签:返回,某列,python,等于,基础,score,SQL,SELECT
来源: https://www.cnblogs.com/linho/p/15261021.html