题解 | #组合 Products 表中的产品名称和 Customers 表中的顾客名称#
组合 Products 表中的产品名称和 Customers 表中的顾客名称
http://www.nowcoder.com/practice/461077c0ba0f473abecf5ee79c632acd
不知这道题意义何在?
select prod_name from Products
union
select cust_name as prod_name from Customers
order by prod_name;