题目:获取 Sales 表中所有 sale_id 对应的 product_name 以及该产品的所有 year 和 price 。
准备数据
分析数据
题目:获取 Sales
表中所有 sale_id
对应的 product_name
以及该产品的所有 year
和 price
。
准备数据
## 创建库
create database db;
use db;
## 创建销售表
Create table If Not Exists Sales (sale_id int, product_id int, year int, quantity int, price int);
## 创建产品表
Create table If Not Exists Product (product_id int, product_name varchar(10));
## 向销售表插入数据
Truncate table Sales;
insert into Sales (sale_id, product_id, year, quantity, price) values ('1', '100', '2008', '10', '5000');
insert into Sales (sale_id, product_id, year, quantity, price) values ('2', '100', '2009', '12', '5000');
insert into Sales (sale_id, product_id, year, quantity, price) values ('7', '200', '2011', '15', '9000');
## 向产品表插入数据
Truncate table Product;
insert into Product (product_id, product_name) values ('100', 'Nokia');
insert into Product (product_id, product_name) values ('200', 'Apple');
insert into Product (product_id, product_name) values ('300', 'Samsung');
输入表:
销售表
产品表
分析数据
使用内连接将两张表连接起来
### 以获取 Sales 表中所有 sale_id 对应的 product_name 以及该产品的所有 year 和 price 。
select product_name,year,price from sales s join product p on p.product_id = s.product_id;