第四章 数据查询(上)
Posted ftyl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第四章 数据查询(上)相关的知识,希望对你有一定的参考价值。
查询语句:
select <列名>
from <表名>
[where <查询条件表达式>]
[ order by <排序的列名>[asc或desc] ]
asc升序(缺省)
desc降序
使用as来命名列(取别名)
select Scode as 学员编号, Sname as 学员姓名, Saddress as 学员地址
from students
where Saddress<>‘河南新乡’
select FirstName + ‘.‘ + LastName AS ‘姓名‘ from Employees
查询空行
select SName from students where Semail IS NULL
查询非空行
select sname from students where not semail is null
或
select sname from students where semail is not null
限制固定行数
select top 5 sname, saddress
from students where ssex = 0
返回百分之多少行
select top 20 percent sname, saddress
from students where ssex = 0
以上是关于第四章 数据查询(上)的主要内容,如果未能解决你的问题,请参考以下文章