gpt4 book ai didi

postgresql - 检查postgresql中是否存在一行

转载 作者:行者123 更新时间:2023-11-29 11:11:56 25 4
gpt4 key购买 nike

我在 SO 中看到了很多关于这个的帖子。但我得不到答案。我想查询以检查表中是否存在特定行。如果它存在,它应该返回一个 string true 并在那里停止搜索,如果不存在则返回 false。

最佳答案

select
case when exists (select true from table_name where table_column=?)
then 'true'
else 'false'
end;

但最好只返回 bool 值而不是字符串:

select exists (select true from table_name where table_column=?);

关于postgresql - 检查postgresql中是否存在一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11274451/

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