Postgresql column reference “id” is ambiguous

前端 未结 4 931
粉色の甜心
粉色の甜心 2021-02-04 23:18

I tried the following select:

SELECT (id,name) FROM v_groups vg 
inner join people2v_groups p2vg on vg.id = p2vg.v_group_id
where p2vg.people_id =0;
4条回答
  •  青春惊慌失措
    2021-02-05 00:08

    You need the table name/alias in the SELECT part (maybe (vg.id, name)) :

    SELECT (vg.id, name) FROM v_groups vg 
    inner join people2v_groups p2vg on vg.id = p2vg.v_group_id
    where p2vg.people_id =0;
    

提交回复
热议问题