简单查询:
一、投影 select * from 表名
select 列1,列2... from 表名
select distinct 列名 from 表名 二、筛选 select top 数字 列|* from 表名
(一)等值与不等值
select * from 表名 where 列名=值
select * from 表名 where 列名!=值
select * from 表名 where 列名>值
select * from 表名 where 列名<值
select * from 表名 where 列名>=值
select * from 表名 where 列名<=值 (二)多条件与范围
select * from 表名 where 条件1 and|or 条件2 ...
select * from 表名 where between ... and ...
select * from 表名 where 列 in (值列表) (三)模糊查询 like % _
select * from 表名 where 列 like '%_....' 三、排序 select * from 表名 where 条件 order by 列名 ASC|DESC,列名 ASC|DESC 四、分组: 统计函数(聚合函数)
count(), max(), min(), sum(), avg() count()统计总行数
count(*)得到所有的行数
count(列)得到该列中所有非null个数。
select COUNT(*) from car where Brand='b003' max(列) 这一列的最大,min(列)这一列的最小
select min(price) from car sum(列)这一列的和,avg(列)这一列的平均
select AVG(price) from car group by ...having... .group by后面跟的是列名。
.一旦使用group by分组了,则select和from中间就不能用*,只能包含两类东西一类是:group by 后面的列名,另一类是统计函数
select Oil,avg(price) from Car group by oil
对于统计函数生成的列,默认是无列名,可以通过下面的方法指定列名。
select Oil as 油耗,COUNT(*) as 数量,avg(price) 均价 from Car group by oil having后面一般跟得是统计函数。它用来对分组后的数据进一步筛选。 复杂查询:
一、连接查询 把多个表的列合在一个界面视图中。
思想:.生成笛卡尔积。.对笛卡尔积进行筛选。.选择列进行显示。
select 表1.列1,表1.列2,表2.列1,表2.列2…… from 表1,表2 where 表1.列=表2.列 select * from 表1
join 表2 on 表1.列=表2.列
join 表3 on 表2.列=表3.列 左连(left join),右连(right join),全连(full join) 二、联合查询 把多个表的行合在一个界面视图中。
用union把两个查询组合在一起。要求是这两个查询的列要一一对应。 三、子查询(嵌套查询) (一)无关子查询:
至少是两层查询,在外层查询的里面再写查询。
里层查询为外层查询提供查询的中间内容。 (二)相关子查询: 范例: 复制代码
--、 查询Student表中的所有记录的Sname、Ssex和Class列。
select sname,ssex,class from student
--、 查询教师所有的单位即不重复的Depart列。
select distinct depart from teacher
--、 查询Student表的所有记录。
--、 查询Score表中成绩在60到80之间的所有记录。
select * from score where degree between and
--、 查询Score表中成绩为85,86或88的记录。
select * from score where degree in(,,)
--、 查询Student表中“”班或性别为“女”的同学记录。
select * from student where class='' or ssex='女'
--、 以Class降序查询Student表的所有记录。
select * from student order by class desc
--、 以Cno升序、Degree降序查询Score表的所有记录。
select * from score order by cno asc,degree desc
--、 查询“”班的学生人数。
select COUNT(*) from student where class=''
--、查询Score表中的最高分的学生学号和课程号。
select * from score
select MAX(degree) from score --
select sno,cno from score where degree=(select MAX(degree) from score)
--、查询‘-’号课程的平均分。
select AVG(degree) from score where cno='3-105'
--、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。
select cno,AVG(degree) from score where cno like '3%' group by cno having count(*)>= --、查询最低分大于70,最高分小于90的Sno列。--假定按学生算。
select sno,MAX(degree),MIN(degree) from score group by sno having MAX(degree)< and MIN(degree)> --、查询所有学生的Sname、Cno和Degree列。
select * from student
select * from score select sname,cno,degree from student join score on student.sno = score.sno --、查询所有学生的Sno、Cname和Degree列。
select * from course
select * from score select sno,cname,degree from course join score on course.cno = score.cno
--、查询所有学生的Sname、Cname和Degree列。
select * from student
select * from course
select * from score select sname,cname,degree from student
join score on student.sno = score.sno
join course on course.cno = score.cno --、查询“”班所选课程的平均分。
select * from student
select * from score
select sno from student where class='' --,,
select * from score where sno in(,,)
select AVG(degree) from score where sno in(select sno from student where class='' ) select AVG(score.degree) from student join score on student.sno = score.sno where student.class='' --、假设使用如下命令建立了一个grade表:
create table grade(low int,upp int,rank varchar())
insert into grade values(,,'A')
insert into grade values(,,'B')
insert into grade values(,,'C')
insert into grade values(,,'D')
insert into grade values(,,'E') --现查询所有同学的Sno、Cno和rank列。
select * from grade
select * from score
select sno,cno,rank from grade join score on score.degree>=grade.low and score.degree<=grade.upp
--、查询选修“-”课程的成绩高于“”号同学成绩的所有同学的记录。
select * from score
select * from score where cno='3-105' and degree>(select degree from score where cno='3-105' and sno='') select degree from score where cno='3-105' and sno='' --
复制代码 复制代码
--、查询成绩高于学号为“”、课程号为“-”的成绩的所有记录。
select *from score where degree >(select degree from score where sno=''and cno='3-105')
--、查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。
select sno,sname,sbirthday from student where year (sbirthday)=(select year(sbirthday) from student where sno='')
--、查询“张旭“教师任课的学生成绩。
select *from score where cno=(select cno from course where tno=( select tno from teacher where tname='张旭'))
--、查询选修某课程的同学人数多于5人的教师姓名。
select tname from teacher where tno=( select tno from course where cno in( select cno from score group by cno having count(*)>))
--、查询95033班和95031班全体学生的记录。
select * from score where sno in( select sno from student where class in('',''))
--、查询存在有85分以上成绩的课程Cno.
select distinct cno from score where degree >
--、查询出“计算机系“教师所教课程的成绩表。
select *from score where cno in( select cno from course where tno in(select tno from teacher where depart ='计算机系')
--、查询“计算机系”与“电子工程系“不同职称的教师的Tname和Prof。
select tname,prof from teacher
--、查询选修编号为“-“课程且成绩至少高于选修编号为“-”的同学的Cno、Sno和Degree,并按Degree从高到低次序排序。
select cno from score group by cno having select degree from where cno ='3-105'and degree >(select degree from score where cno='3-105' and sno='3-245')

最新文章

  1. python27 ImportError: No module named site
  2. coderforces #384 D Chloe and pleasant prizes(DP)
  3. dispaly 的block与inline-block的用法
  4. Swift 使用CollectionView 实现图片轮播封装就是这样简单
  5. 99. Recover Binary Search Tree
  6. 安装ubuntu12.04LTS卡住以及花屏问题
  7. progressbar样式
  8. Net下无敌的ORM
  9. MySQL内部执行流程
  10. DashBoard创建各种表(二)
  11. MSRA-TD5000数据集使用详解
  12. JAVA中异常状况总结
  13. 转型、自助、移动—BI市场的应用盘点
  14. 20155333 《网络对抗》Exp2 后门原理与实践
  15. 2D开机动画
  16. 说说SQL Server的数据类型
  17. 解决方案:android monkeyrunner:Timeout while trying to create chimp mananger(device = MonkeyRunner.waitForConnection()一直报错的问题)
  18. jq 自定义标注小组件 $.widget
  19. 灰度图的直方图均衡化(Histogram Equalization)原理与 Python 实现
  20. 【bzoj3065】: 带插入区间K小值 详解——替罪羊套函数式线段树

热门文章

  1. UVALive 3942 字典树+dp
  2. .net core excel导入导出
  3. F5 基本原理介绍(转)
  4. (函数)P1217 [USACO1.5]回文质数 Prime Palindromes
  5. 寒假day10
  6. uni-app文章详情-富文本展示 优雅展示代码块
  7. Git&amp;GitHub 基本使用
  8. urllib简单介绍
  9. java 连接mysql 示例
  10. html页面监听事件