gpt4 book ai didi

SQL 回退行?

转载 作者:行者123 更新时间:2023-11-30 21:24:08 25 4
gpt4 key购买 nike

我在 PHP 中使用 MySQL 5.1,我想知道是否可以运行一个查询,该查询将使用主键选择特定行,但如果不存在,则返回一个不同的行。

例如:select * from table1 where id="a"else id="b"

最佳答案

select *
from table1
where id="a"
union all
select *
from table1
where id="b"
and no exists (
select *
from table1
where id="a");

关于SQL 回退行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1117827/

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