这是我的查询
select *
from table
where id in ( select string_agg(CAST(id as varchar), '","') FROM table)
答案 0 :(得分:0)
string_agg()
完全没用,而且没必要:
select *
from table_one
where id in (select id FROM other_table)
我假设您正在为两个不同的表执行此操作,否则这将是一种非常昂贵的写作方式:select * from table where id is not null