本题感觉就一个小点,使用union查询时用来连接的两表字段需要保持一致,因此将Customers表中的cust_name改成prod_name,再进行union查询即可。
(select prod_name from Products)
union  //  联合去重查询
(select cust_name prod_name from Customers)  //  将Customers表中的cust_name 修改为 prod_name
order by prod_name asc  //  按产品名称升序排列