SQL108题
组合两个表的两列为一列
select prod_name from Products union
select cust_name as pro_name from Customers
order by prod_name
#笔试#组合两个表的两列为一列
select prod_name from Products union
select cust_name as pro_name from Customers
order by prod_name
#笔试#相关推荐
招聘动态