你必须掌握的一些常见的SQL语句,包含单表查询、高级查询(连接查询、复合条件查询、嵌套查询)

简介:

分享一些常见的SQL语句,包含单表查询、高级查询(连接查询、复合条件查询、嵌套查询等)。

复制代码
--建立学生信息表Students
create table Students
(
    SId char(5) not null primary key,
    SName nvarchar(20) unique,
    SGender char(10) default('Male'),
    SAge int,
    SSdept nvarchar(250)
    
)
--课程表
create table Course
(
    CNo Char(4) not null primary key,
    CName nvarchar(50),
    CPNo char(4),
    CCreadit smallint
    foreign key(cpno) references course(cno)
    
    
)
--学生选课表
create table StudentCourse
(
    SCId char(5) not null ,
    SCCNo char(4) not null,
    SCGrade smallint,
    primary key(Scid,sccno),
    foreign key(SCId) references Students(Sid),
    foreign key(sccno) references Course(cno)
)

--查询每个系的学生人数
select COUNT(*) as '人数',SSdept as '所在系' 
from Students group by SSdept
--查询计算机系男女生人数
select COUNT(*) as '人数',SGender 性别 
from Students where ssdept='计算机科学与技术' group by SGender
--查询每个系男女生人数
select COUNT(*) as '人数',SSdept as '',SGender as '性别' 
from students group by ssdept,SGender
--查询男生人数超过1的系
select ssdept as '所在系',COUNT(*) as '人数'
from Students where SGender='Male' group by ssdept having COUNT(*)>2
--查询和张三同一系的学生学号、姓名
select SId as '学号' ,SName as '姓名'
from Students 
where SSdept=(select ssdept from Students where SName='张三') and SName<>'张三'
--查询比张三年纪大的学生的姓名、性别
select SName as '姓名',SGender as '性别' 
from Students where SAge>(select sage from students where sname='张三')

--查询张三的学号和其选修的课程号和成绩
select sc.SCCNo as '课程号',sc.SCGrade as '成绩'
from students as s,Course c,StudentCourse sc
where s.SId=sc.SCId and sc.SCCNo=c.CNo and s.SName='张三'

--查询张三选修高等数学上这门课的成绩

select sc.SCCNo as '课程号',c.CName as '课程名',sc.SCGrade as '成绩'
from students as s,Course c,StudentCourse sc
where s.SId=sc.SCId and sc.SCCNo=c.CNo and c.CName='高等数学上' and s.SName='张三'

--查询与张三一样大的学生姓名,性别,年龄。
select SName as '姓名',SGender as '性别',SAge as '年龄' from Students
where SAge=(select SAge from Students where SName='张三') and SName<>'张三'

--查询选修了高等数学上的学生的学号、姓名
select s.SId as '学号',s.SName as '姓名'
from students as s,Course c,StudentCourse sc
where s.SId=sc.SCId and sc.SCCNo=c.CNo and c.CName='高等数学上'

--查询张三选修的所有课程号、课程名称、成绩
select sc.SCCNo as '课程号',c.CName as '课程名',sc.SCGrade as '成绩'
from students as s,Course c,StudentCourse sc
where s.SId=sc.SCId and sc.SCCNo=c.CNo  and s.SName='张三'

--查询学习了张三选修某门课程的学生学号、姓名、年龄
select * from Students s1,StudentCourse sc1 where sc1.SCCNo in
(
    select sc.SCCNo from Students s,StudentCourse sc
    where sc.SCId=s.SId and s.SName='张三' 
)
and  sc1.SCId=s1.SId

--查询张三选修的所有课程的课程号、课程名称

select sc.SCCNo as '课程号',c.CName as '课程名' from Students s,Course c,StudentCourse sc
where s.SId=sc.SCId and sc.SCCNo=c.CNo and s.SName='张三'
--查询比张三年龄大的学生学号、姓名
select SId as '学号',SName as '姓名' from Students 
where SAge>(select SAge from Students where SName='张三')

--查询选修每门课程中成绩小于其平均成绩的学生学号
select sc1.SCId as '学生学号' from StudentCourse sc1 where SCGrade<
(
  select AVG(SCGrade) from StudentCourse sc2 where sc2.SCCNo=sc1.SCCNo
)

--查询张三选修高等数学上的课程的成绩
select * from StudentCourse  sc ,Students s,Course c
where sc.SCId=s.SId and sc.SCCNo=c.CNo and s.SName='张三' and c.CName='高等数学上'

select * from StudentCourse where SCCNo=
(
    Select Cno from Course where CName='高等数学上'
)
and
SCId=
(
    select sid from Students where  SName='张三'

)

--查询张三选修课程的平均成绩
select AVG(sc.SCGrade) as '平均成绩' from StudentCourse  sc ,Students s
where sc.SCId=s.SId and s.SName='张三'

--查询选修课程的平均成绩小于张三平均成绩的学生学号
    
 select sC.SCId from StudentCourse sc group by sc.SCId having AVG(SC.SCGrade)< 
 (
    
 select AVG(sc.SCGrade) from StudentCourse sc ,Students s where sc.SCId=s.SId and s.SName='张三'
 )

--查询课程的平均成绩低于张三平均成绩的课程号

 select sC.SCCNo from StudentCourse sc group by sc.SCCNo having AVG(SC.SCGrade)< 
 (
    
         select AVG(sc.SCGrade) from StudentCourse sc ,Students s where sc.SCId=s.SId and s.SName='张三'
 )
 
--查询选修课程成绩大于等于该课程平均成绩的学生学号
 
select SCId from StudentCourse sc1 where  sc1.SCGrade >=
(
     select avg( sc2.SCGrade ) from StudentCourse sc2  where sc2.SCCNo=sc1.SCCNo
)
复制代码

 

本博客为 木宛城主原创,基于 Creative Commons Attribution 2.5 China Mainland License发布,欢迎转载,演绎或用于商业目的,但是必须保留本文的署名 木宛城主(包含链接)。如您有任何疑问或者授权方面的协商,请给我留言。

本文转自木宛城主博客园博客,原文链接:http://www.cnblogs.com/OceanEyes/archive/2012/05/20/tsqlmianshi.html,如需转载请自行联系原作者
目录
相关文章
|
1天前
|
SQL NoSQL Java
Java使用sql查询mongodb
通过使用 MongoDB Connector for BI 和 JDBC,开发者可以在 Java 中使用 SQL 语法查询 MongoDB 数据库。这种方法对于熟悉 SQL 的团队非常有帮助,能够快速实现对 MongoDB 数据的操作。同时,也需要注意到这种方法的性能和功能限制,根据具体应用场景进行选择和优化。
23 9
|
22天前
|
SQL 存储 人工智能
Vanna:开源 AI 检索生成框架,自动生成精确的 SQL 查询
Vanna 是一个开源的 Python RAG(Retrieval-Augmented Generation)框架,能够基于大型语言模型(LLMs)为数据库生成精确的 SQL 查询。Vanna 支持多种 LLMs、向量数据库和 SQL 数据库,提供高准确性查询,同时确保数据库内容安全私密,不外泄。
92 7
Vanna:开源 AI 检索生成框架,自动生成精确的 SQL 查询
|
29天前
|
SQL Java
使用java在未知表字段情况下通过sql查询信息
使用java在未知表字段情况下通过sql查询信息
36 8
|
1月前
|
SQL 安全 PHP
PHP开发中防止SQL注入的方法,包括使用参数化查询、对用户输入进行过滤和验证、使用安全的框架和库等,旨在帮助开发者有效应对SQL注入这一常见安全威胁,保障应用安全
本文深入探讨了PHP开发中防止SQL注入的方法,包括使用参数化查询、对用户输入进行过滤和验证、使用安全的框架和库等,旨在帮助开发者有效应对SQL注入这一常见安全威胁,保障应用安全。
59 4
|
1月前
|
SQL 监控 关系型数据库
SQL语句当前及历史信息查询-performance schema的使用
本文介绍了如何使用MySQL的Performance Schema来获取SQL语句的当前和历史执行信息。Performance Schema默认在MySQL 8.0中启用,可以通过查询相关表来获取详细的SQL执行信息,包括当前执行的SQL、历史执行记录和统计汇总信息,从而快速定位和解决性能瓶颈。
|
SQL Perl 存储
PL/SQL 嵌套记录与记录集合
    将多个逻辑上不相关列组合到一起形成了PL/SQL的记录类型,从而可以将记录类型作为一个整体对待来处理。而且PL/SQL记录类型可以进行嵌套以及基于PL/SQL记录来定义联合数组,嵌套表等。
938 0
|
3月前
|
关系型数据库 MySQL 网络安全
5-10Can't connect to MySQL server on 'sh-cynosl-grp-fcs50xoa.sql.tencentcdb.com' (110)")
5-10Can't connect to MySQL server on 'sh-cynosl-grp-fcs50xoa.sql.tencentcdb.com' (110)")
|
5月前
|
SQL 存储 监控
SQL Server的并行实施如何优化?
【7月更文挑战第23天】SQL Server的并行实施如何优化?
135 13
|
5月前
|
SQL
解锁 SQL Server 2022的时间序列数据功能
【7月更文挑战第14天】要解锁SQL Server 2022的时间序列数据功能,可使用`generate_series`函数生成整数序列,例如:`SELECT value FROM generate_series(1, 10)。此外,`date_bucket`函数能按指定间隔(如周)对日期时间值分组,这些工具结合窗口函数和其他时间日期函数,能高效处理和分析时间序列数据。更多信息请参考官方文档和技术资料。
|
5月前
|
SQL 存储 网络安全
关系数据库SQLserver 安装 SQL Server
【7月更文挑战第26天】
73 6