SQL96 返回顾客名称和相关订单号

描述

Customers 表有字段顾客名称cust_name、顾客id cust_id

cust_id

cust_name

cust10

andy

cust1

ben

cust2

tony

cust22

tom

cust221

an

cust2217

hex

Orders订单信息表,含有字段order_num订单号、cust_id顾客id

order_num

cust_id

a1

cust10

a2

cust1

a3

cust2

a4

cust22

a5

cust221

a7

cust2217

【问题】

编写 SQL 语句,返回 Customers 表中的顾客名称(cust_name)和Orders 表中的相关订单号(order_num),并按顾客名称再按订单号对结果进行升序排序。你可以尝试用两个不同的写法,一个使用简单的等联结语法,另外一个使用 INNER JOIN。

【示例结果】cust_name代表用户名称cust_name和订单号order_num。

cust_name

order_num

an

a5

andy

a1

ben

a2

hex

a7

tom

a4

tony

a3

【示例解析】顾客名称为an的cust_id为cust221,他的订单号为a5。

示例1

输入:

DROP TABLE IF EXISTS `Orders`;

CREATE TABLE IF NOT EXISTS `Orders`(

order_num VARCHAR(255) NOT NULL COMMENT '商品订单号',

cust_id VARCHAR(255) NOT NULL COMMENT '顾客id'

);

INSERT `Orders` VALUES ('a1','cust10'),('a2','cust1'),('a3','cust2'),('a4','cust22'),('a5','cust221'),('a7','cust2217');

DROP TABLE IF EXISTS `Customers`;

CREATE TABLE IF NOT EXISTS `Customers`(

cust_id VARCHAR(255) NOT NULL COMMENT '客户id',

cust_name VARCHAR(255) NOT NULL COMMENT '客户姓名'

);

INSERT `Customers` VALUES ('cust10','andy'),('cust1','ben'),('cust2','tony'),('cust22','tom'),('cust221','an'),('cust2217','hex');

复制

输出:

an|a5

andy|a1

ben|a2

hex|a7

tom|a4

tony|a3

答案

--第一种方法,直接关联
select t1.cust_name,t2.order_num 
from Customers t1,Orders t2
where t1.cust_id=t2.cust_id
order by t1.cust_name asc

--第二种方法,根据题目提示,内联
select t1.cust_name,t2.order_num 
from Customers t1 
inner join Orders t2 on t1.cust_id=t2.cust_id
order by t1.cust_name asc

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值