一些常用的sql语句

时间:2023-12-16 13:00:32

1.查询表里的null值:is null 和 is not null

 select*from student where email is null       返回的该表里面邮箱为null的结果集

 select*from student where email is not null    返回的该表里面邮箱不为null的结果集

2.查询中使用的常量列

select 姓名=name,年龄=age ,'男' as 性别

from student       查询中多了一列性别,该列中的所有数据都是“男”

3.top关键字

 select top 5 from student  查询该表中记录的前5条数据