IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> Product数据库 -> 正文阅读

[游戏开发]Product数据库


基与产品的数据库模式,完成下列查询:
Product(maker,model,type);
PC(model,speed,ram,hd,price);
Laptop(model,speed,ram,hd,screen,price);
Printer(model,color,type,price);
要求每题的答案应当至少使用一个子查询,并且要求使用两种不同的方法写出每个查询(例如使用不同的运算符:exists,in,all,any等)。

建表

创建、使用数据库

create database product;
use product;

在这里插入图片描述

建表

create table product
(maker char(20),
model char(10),
type char(20)
);

在这里插入图片描述

插入数据

insert into product
values('A','01','PC'),
('A','01','Laptop'),
('B','02','Laptop'),
('B','02','Printer'),
('B','03','Printer'),
('B','04','PC'),
('C','01','PC'),
('C','01','Laptop'),
('C','01','Printer'),
('C','02','Printer'),
('C','03','Laptop'),
('C','04','PC'),
('C','04','Printer');

在这里插入图片描述

建表

create table PC
(model char(10),
speed double,
ram int,
hd int,
price double
);

在这里插入图片描述

插入数据

insert into PC
values('01',2.1,512,80,3000),
('01',2.1,1024,160,3500),
('01',2.2,1024,160,3600),
('01',3.2,2048,200,3700),
('02',2.2,512,200,3800),
('02',3.3,2048,320,5000),
('02',3.2,2048,330,6000),
('03',2.3,1024,250,4800),
('03',3.2,1024,250,5100),
('04',2.2,1024,250,3900),
('04',3.3,1024,80,3800),
('04',3.3,1024,250,5500);

在这里插入图片描述

建表

create table Laptop
(model char(10),
speed double,
ram int,
hd int,
price double
);
插入
insert into Laptop
values('01',2.1,512,80,2000),
('01',2.1,1024,160,2500),
('01',2.2,1024,160,2600),
('01',3.2,2048,200,2700),
('02',2.2,512,200,2800),
('02',3.3,2048,320,4000),
('02',3.2,2048,330,5000),
('03',2.3,1024,250,3800),
('03',3.2,1024,250,4100),
('04',2.2,1024,250,2900),
('04',3.3,1024,80,2800),
('04',3.3,1024,250,4500);

在这里插入图片描述

建表

create table Printer
(model char(10),
color boolean,
type char(10),
price double
);

插入数据

insert into printer
values('01',true,'激光',1000),
('02',false,'激光',1000),
('03',true,'喷墨',3000),
('04',false,'喷墨',2000);

在这里插入图片描述

1)找出速度在3.0以下的PC制造商。

select distinct(maker)
from product
where model in
(select model
from PC
where speed<3.0);

在这里插入图片描述

select distinct(maker)
from product
where exists
(select *
from PC,product
where PC.model=product.model and speed<3.0);

在这里插入图片描述

2)找出价格最高的打印机的相关信息。

select * from Printer
where price>=all
(select price from Printer);

在这里插入图片描述

select * from Printer
where price=
(select max(price) from Printer);

在这里插入图片描述

3)找出速度比任何一台PC都慢的笔记本电脑。

select * from Laptop
where speed <all
(select speed from PC);

在这里插入图片描述

select * from Laptop
where speed <
(select min(speed) from PC);

在这里插入图片描述

4)找出价格最高的产品(PC,笔记本电脑或者打印机)的型号。

union的介绍https://www.runoob.com/sql/sql-union.html

select model from 
(select model,price from pc union 
select model,price from printer union 
select model,price from laptop) a 
where a.price in(select max(price) from
(select price from pc union 
select price from printer union 
select price from laptop)b);

在这里插入图片描述

select model from
(select model,price from pc union  
select model,price from laptop union 
select model,price from printer)b  
where b.price>=all(
select price from pc union 
select price from laptop union 
select price from printer);

在这里插入图片描述

5)找出价格最低的彩色打印机的制造商。

select distinct(maker) from Product,Printer
where Printer.price<=all
(select price from printer
where color=1 )and Product.model=Printer.model;

在这里插入图片描述

select distinct(maker) from Product,Printer
where Printer.price=
(select min(price) from printer
where color=1 )and Product.model=Printer.model;

在这里插入图片描述

6)找出RAM容量最小而PC中速度最快者的制造商。

select distinct(maker) from product,pc
where pc.model=product.model and
ram =(select min(ram) from pc) and
speed =(select max(speed) from pc where ram =(select min(ram) from pc));

在这里插入图片描述

碎碎念

我个人水平一般,也没学视图什么的,感觉4、6题还是蛮难的,网上的题型很多,这两题的答案也是借鉴了不少大佬的解决办法。

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-03-17 22:31:30  更:2022-03-17 22:34:41 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/16 18:58:34-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码