ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

SQL语句练习-多表查询-1/2 错题 未做之题 补题

2021-06-07 14:33:21  阅读:377  来源: 互联网

标签:多表 price SELECT 错题 补题 model speed maker select


10-4 4-4 查询具有最高价格的机器的型号,机器包括PC、Laptop、Printer (10 分)

SELECT a.model
from (
	SELECT price,model
	from pc
	UNION
	SELECT price,model
	from laptop
	UNION
	SELECT price,model
	from printer
)as a
WHERE a.price =(
	SELECT max(b.price)
	FROM (
		SELECT price,model
		from pc
		UNION
		SELECT price,model
		from laptop
		UNION
		SELECT price,model
		from printer
	)b
)	

10-7 5-1 查询销售便携式电脑但不销售PC的厂商 (10 分)

SELECT maker
FROM product p,laptop l
WHERE p.model=l.model and maker not in(
SELECT maker
    FROM product p,pc 
    WHERE p.model=pc.model
)

10-8 5-2 查询至少生产两种不同的计算机(PC或便携式电脑)且机器速度至少为133的厂商

select maker
from (
    select maker,model
    from product
    where model in (
        select model
        from pc
        where speed>=133
    )
    union
    select maker,model
    from product
    where model in (
        select model
        from laptop
        where speed>=133
    )
) as a
group by maker
having count(maker)>=2

10-9 5-3 查询生产最高速度的计算机(PC或便携式电脑)厂商 (10 分)

select maker
from (
    select model, maker
    from product
    where speed in (
        select MAX(speed)
        from 
    )
    union
    select model, maker
    from product
    where speed in (
        select MAX(speed)
        from laptop
				union
        select MAX(speed)
        from pc
    )
) as a
ORDER BY maker

标签:多表,price,SELECT,错题,补题,model,speed,maker,select
来源: https://blog.csdn.net/dylan_sjc/article/details/115493163

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有