[SQL]中级SQL(4)

数据集

咱们这一篇文章采用PostgreSQL的SQL语法。重点咱们关注select...from...where这种读操做,分析query (analytical query)。
十项全能ZehnkampfD数据集在 https://hyper-db.de/interface... 能够直接使用。另外在这个网页不容许进行写操做:insert, update, delete之类的transactional query。固然create tabledrop table也不被容许。html

本地载入改数据集https://segmentfault.com/a/11...segmentfault

英文Schema: $$ZehnkampfD = \{\underline{Name, Discipline}, points\}$$api

德文Schema: $$ZehnkampfD = \{\underline{Name, Disziplin}, punkte\}$$code

有关英文Schema:在个人文章提到这一块内容。德文schema能够直接在HyPer网页接口运行。这里为了方便你们直接在网页上运行,我采用德文schema。htm

Schma和大部分SQL语句来自Prof. Alfons Kemper, Ph.D.的课件和书。接口

课件:ip

书: https://db.in.tum.de/teaching...ci

中级SQL

  • 找出在全部Diszipplin都比Bolt好的运动员:
select distinct z.name
from zehnkampfd as z
where not exists(
    select *
    from zehnkampfd z2
    where z2.name = z.name and exists(
        select *
        from zehnkampfd z3
        where z2.punkte <= z3.punkte and z2.disziplin = z3.disziplin and z3.name = 'Bolt'
        )
    )

用中文就是:不存在任意一个项目,这个项目存在bolt比当前运动员优秀。get

咱们来详细看看中间表格的结果是:it

select *
    from zehnkampfd z2
    where  exists(
        select *
        from zehnkampfd z3
        where z2.punkte <= z3.punkte and z2.disziplin = z3.disziplin and z3.name = 'Bolt'
        )
name     | disziplin  | punkte 
-------------+------------+--------
 Bolt        | 100m       |     50
 Bolt        | Weitsprung |     50
 Eaton       | 100m       |     40
 Behrenbruch | 100m       |     30
 Behrenbruch | Weitsprung |     50
(5 rows)


或者用count表达这个所有:

with better_as_bolt as (
    select z.name, z.disziplin
    from zehnkampfd z, zehnkampfd b
    where z.punkte > b.punkte and z.disziplin = b.disziplin and b.name = 'Bolt'
), num_dis as (
    select count(distinct disziplin) as num
    from zehnkampfd
)

select distinct name
from better_as_bolt
group by name
having count(*) = (select num from num_dis)

这个题目很相似中级SQL(1)中的这一题搜索听了全部sws=4 vorlesungen的学生:

  • 搜索100m的冠军(冠军定义为:没有人比这个运动员更好):
-- with correlated sub-query
select gold.name
from zehnkampfd gold
where gold.disziplin = '100m' and not exists(
    select *
    from zehnkampfd other
    where other.disziplin = gold.disziplin  and gold.punkte < other.punkte
    )

或者

-- with correlated sub-query
select gold.name
from zehnkampfd gold
where gold.disziplin = '100m' and gold.name not in (
    -- 存在有运动员比当前运动员更好的的状况
    select z1.name
    from zehnkampfd z1, zehnkampfd z2
    where z1.disziplin = z2.disziplin and z1.disziplin = '100m' and z1.punkte < z2.punkte
    )

或者

-- 与数字比较
select gold.name
from zehnkampfd gold
where gold.disziplin = '100m' and gold.punkte = (select max(punkte) from zehnkampfd where disziplin = '100m')
  • 搜索100m的亚军(亚军定义为:只存在一个运动员比当前运动员更好):
select silver.name
from zehnkampfd silver
where silver.disziplin = '100m' and 1 = (
    select count(*)
    from zehnkampfd gold -- 这个是冠军,比咱们想选的运动员更好,咱们只容许这样的人出现一次
    where gold.disziplin = '100m' and gold.punkte > silver.punkte
    )
select silver.name
from zehnkampfd silver
where silver.disziplin = '100m' and exists(
    select *
    from zehnkampfd gold -- 这个是冠军,比咱们想选的运动员更好,咱们只容许这样的人出现一次
    where gold.disziplin = '100m' and gold.punkte > silver.punkte and not exists(
        select *
        from zehnkampfd nobody -- 再也不运行非冠军,比咱们想选的运动员更好
        where nobody.disziplin = '100m' and gold.name != nobody.name and nobody.punkte > silver.punkte)
    )
  • 搜索100m的季军(季军定义为:只存在两个运动员比当前运动员更好):
select bronze.name
from zehnkampfd bronze
where bronze.disziplin = '100m' and 2 = (
    select count(*)
    from zehnkampfd other
    where other.disziplin = '100m' and other.punkte > bronze.punkte
    )
select bronze.name
from zehnkampfd bronze
where bronze.disziplin = '100m' and exists(
    select *
    from zehnkampfd gold, zehnkampfd silver
    where gold.disziplin = '100m' and gold.punkte > bronze.punkte and
          silver.disziplin = '100m' and silver.punkte > bronze.punkte and
          gold.name != silver.name and not exists(
        select *
        from zehnkampfd nobody -- 再也不容许非冠军和亚军
        where nobody.disziplin = '100m' and gold.name != nobody.name and silver.name != nobody.name and nobody.punkte > bronze.punkte)
    )
相关文章
相关标签/搜索