gpt4 book ai didi

MySQL 根据结果选择

转载 作者:行者123 更新时间:2023-11-29 06:36:19 24 4
gpt4 key购买 nike

我有一张水果 table :

id    fruit_type    color
--------------------------
1 apple yellow
2 apple green
3 strawberry red

我想从我的 table 上选择所有水果。但如果它是一个苹果,我只想在它是绿色的时候包括它。我怎样才能在单个 MySQL 查询中实现这一点?

最佳答案

没什么复杂的,您只需在WHERE 条件中使用OR 运算符:

SELECT *
FROM fruits
WHERE fruit_type != "apple"
OR color = "green"; /* ie where fruit_type = "apple" and color = "green" */

.

关于MySQL 根据结果选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24464194/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com