题解 | #纠错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
全部评论
方法三:select cust_name,cust_contact,cust_email from Customers where cust_state in ('MI','IL') order by cust_name
1 回复 分享
发布于 2022-12-28 15:23 浙江
为什么是or 不是 and
点赞 回复 分享
发布于 2023-05-27 13:59 吉林

相关推荐

评论
13
1
分享
牛客网
牛客企业服务