SQL————高级查询

高级查询

--连接查询 select * from 表1,表2 ————形成笛卡尔积

select * from 表1,表2 where 表1.主键=表2.外键  ————主外键位置可以互换

--join on 内连接

格式: select * from 表1 join 外键 on 表1.主键 = 表2.外键

--查哪位学生的哪一门课考了多少分

select student.sname,course.cname,score.degree from student join score on score.sno=student.sno join course on course.cno = score.cno

--右连接

右边表必须显示全,如果在左边表没有与之对应的信息,则补空值

格式:select * from 表1 right join 表2 on 表1.主键 = 表2.外键

--左连接

左边表必须显示全,如果在右边表没有与之对应的信息,则补空值

select * from 表1 left join 表2 on 表1.主键 = 表2.外键

--全连接

左右两边的表都显示完全

格式:select * from 表1 full join 表2 on 表1.主键 = 表2.外键

--联合查询

对于查出的两个或多个结构相同的表联合显示用union

格式: select 列1,列2 from 表1 union select 列1,列2 from 表2

--------子查询------------------

--子查询的结果当做父查询的条件 select * from Info

--无关子查询

子查询执行是独立的,和父查询是没有关系的(没有用到父查询的东西)

select * from Info where year(Birthday)=(select YEAR(Birthday) from info where Code=‘p005‘)    ————查询和学号‘p005’出生年份相同的人的信息

--相关子查询

例如:select * from teacher ————求计算机系和电子工程系不同职称的老师信息

select * from teacher t1 where depart=‘计算机系‘

and not exists( select * from teacher t2 where depart=‘电子工程系‘ and t1.prof = t2.prof)

union

select * from teacher t1 where depart=‘电子工程系‘

and not exists( select * from teacher t2 where depart=‘计算机系‘ and t1.prof = t2.prof)

--查询除了每门课最高分之外的其他学生信息。

select * from score

select * from score s1 where degree not in( select MAX(degree) from score s2 group by cno having s1.cno = s2.cno )

分页 select * from Car

select top 5 * from Car -————前5条数据,第一页

select top 5 * from Car where Code not in(select top 5 Code from Car) ————第二页的数据

select top 5 * from Car where Code not in(select top 10 Code from Car) ————第三页的数据

select top 5 * from Car where Code not in(select top (5*2) Code from Car) ————第三页的数据

select ceiling(COUNT(*)/5) from Car ————求总页数

select * from Car where 条件 limit 跳过几条数据,取几条数据 ————mysql里面的分页

时间: 2024-11-03 22:42:03

SQL————高级查询的相关文章

SQL高级查询技巧

1.UNION,EXCEPT,INTERSECT运算符 A,UNION 运算符 UNION 运算符通过组合其他两个结果表(例如 TABLE1 和 TABLE2)并消去表中任何重复行而派生出一个结果表. 当 ALL 随 UNION 一起使用时(即 UNION ALL),不消除重复行.两种情况下,派生表的每一行不是来自 TABLE1 就是来自 TABLE2. B, EXCEPT 运算符 EXCEPT 运算符通过包括所有在 TABLE1 中但不在 TABLE2 中的行并消除所有重复行而派生出一个结果表

SQL高级查询基础

1.UNION,EXCEPT,INTERSECT运算符 A,UNION 运算符 UNION 运算符通过组合其他两个结果表(例如 TABLE1 和 TABLE2)并消去表中任何重复行而派生出一个结果表. 当 ALL 随 UNION 一起使用时(即 UNION ALL),不消除重复行.两种情况下,派生表的每一行不是来自 TABLE1 就是来自 TABLE2. B, EXCEPT 运算符 EXCEPT 运算符通过包括所有在 TABLE1 中但不在 TABLE2 中的行并消除所有重复行而派生出一个结果表

SQL高级查询

高级查询: 一.多表链接 1,普通查询 select * from 表名,表名 where 表名.列名 = 表名.列名 2,join链接 select * from 表名 join 表名 on 表名.列名 = 表名.列名 二.多表联合 select * from 表名 where 列名='内容' union select * from 表名 where 列名='内容' 三.子查询(无关子查询) select * from 表名 where 列名 = (select 列名 from 表名 wher

SQL(高级查询)

1.子查询在WHERE子句中 在SELECT查询中,在WHERE查询条件中的限制条件不是一个确定的值,而是来自于另外一个查询的结果 为了给查询提供数据而首先执行的查询语句叫做子查询 子查询嵌入在其它SQL语句中的SELECT语句,大部分出现在WHERE子句中 子查询嵌入的语句称作主查询或父查询 主查询可以是SELECT语句,也可以是其它类型的语句比如DML或DDL语句 根据返回结果的不同,子查询可分为单行子查询.多行子查询及多列子查询2.子查询在WHERE子句中(续1) 如果子查询返回多行,主查

SQL Server SQL高级查询语句小结(转)

--select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student; select count(distinct sex) from student; --top 取前N条记录 s

sql 高级查询语句总结

数据库建表语句在最后 –这是一个学生成绩管理系统,创建数据库表语句在最后,表包括四张表tblStudent 学生信息表,tblScore 成绩表 ,tblteacher 教师信息表,tblcourse 课程表 –希望大家学会使用mysql数据库,以后工作中使用的数据库是由公司决定,有可能是mysql数据库也有可能是oracel 或者sqlserver数据库, –但是所有数据库都是基于sql操作,每个数据库都有每个数据库的方言,学会基本的sql语句,接触新的数据库时候学习一下该数据库对比与 –其他

SQL高级查询技巧(两次JOIN同一个表,自包含JOIN,不等JOIN)

掌握了这些,就比较高级啦 Using the Same Table Twice 如下面查询中的branch字段 SELECT a.account_id, e.emp_id, b_a.name open_branch, b_e.name emp_branch FROM account AS a INNER JOIN branch AS b_a ON a.open_branch_id = b_a.branch_id INNER JOIN employee AS e ON a.open_emp_id

Oracle数据库——SQL高级查询

一.涉及内容 1.掌握SELECT语句的多表连接查询. 2.掌握SELECT语句的子查询. 二.具体操作 (一)根据Oracle数据库scott方案下的emp表和dept表,完成下列操作: 1.查询所有工种为CLERK的员工的姓名及其部门名称. select ename,dname from scott.emp t1 inner join scott.dept t2 on t1.deptno=t2.deptno where job='CLERK'; 2.查询所有部门及其员工信息,包括那些没有员工

SQL高级查询:嵌套和分页

1.嵌套子查询 --查询最近一次oop考试没有参加考试的学生select StudentName from Student where StudentNo not in( select StudentNo from Result where SubjectId=( select SubjectId from Subject where SubjectName='oop' ) and ExamDate=( select MAX(ExamDate) from Result where Subject