gpt4 book ai didi

sql - 根据postgresql中的条件左连接

转载 作者:行者123 更新时间:2023-11-29 14:28:06 30 4
gpt4 key购买 nike

当我执行下面的查询时,它抛出错误提示:“as”处或附近的语法错误。

我们如何解决这个问题?

还有其他方法吗?

(select * from my_table1 where status='6') as a
left JOIN
(select * from my_table1 where status='1') as b
ON (a.application_id = b.application_id)

最佳答案

使用子查询中的选择像下面这样尝试

select a.* from (select * from my_table1 where status='6') as a
left JOIN
(select * from my_table1 where status='1') as b
ON a.application_id = b.application_id

关于sql - 根据postgresql中的条件左连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55482813/

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