连结(JOIN)
为了演示,我们在创建一张表
CREATE TABLE hive_4_shop_product
(shop_id string,
shop_name string,
product_id string,
quantity int);
INSERT INTO hive_4_shop_product (shop_id, shop_name, product_id, quantity) VALUES
('000A', '东京', '0001', 30),
('000A', '东京', '0002', 50),
('000A', '东京', '0003', 15),
('000B', '名古屋', '0002', 30),
('000B', '名古屋', '0003', 120),
('000B', '名古屋', '0004', 20),
('000B', '名古屋', '0006', 10),
('000B', '名古屋', '0007', 40),
('000C', '大阪', '0003', 20),
('000C', '大阪',