题解 | #纠错4#
纠错4
http://www.nowcoder.com/practice/bde1451b91084c8cab467387a0e0969c
两种方法:
方法一:
使用union子句进行双重查询,再将两次查询的结果结合在一起,但是由于使用了union子句,所以order by 子句只能使用一次且只能在最后一个 select 中使用;具体如下:
select cust_name,cust_contact,cust_email
from Customers
where cust_state = 'MI'
union
select cust_name,cust_contact,cust_email
from Customers
where cust_state = 'IL'
order by cust_name
方法二: 使用 or 进行多条件查询,具体如下:
select cust_name,cust_contact,cust_email
from Customers
where cust_state = 'MI'
or cust_state = 'IL'
order by cust_name