#组合 Products 和 Customers
组合 Products 表中的产品名称和 Customers 表中的顾客名称
https://www.nowcoder.com/practice/461077c0ba0f473abecf5ee79c632acd
select prod_name from Products union all select cust_name from Customers order by prod_name ; 组合两个单一字段的写法
组合 Products 表中的产品名称和 Customers 表中的顾客名称
https://www.nowcoder.com/practice/461077c0ba0f473abecf5ee79c632acd
select prod_name from Products union all select cust_name from Customers order by prod_name ; 组合两个单一字段的写法
相关推荐