数据库
首页 > 数据库> > 【bug - postgresql】PSQLException: ERROR: column reference “id“ is ambiguous

【bug - postgresql】PSQLException: ERROR: column reference “id“ is ambiguous

作者:互联网

项目场景:

        Spring cloud + Mybatis-plus + postgresql


问题描述:

        关联查询报错

PSQLException: ERROR: column reference "id" is ambiguous

原因分析:

        关联查询时两个表均有id


解决方案:

        设置表别名 a,b 

若返回对象只需要取a的id ,select a.id  即可

同理

   PSQLException: ERROR: column reference "XX" is ambiguous 

标签:ambiguous,PSQLException,postgresql,reference,column,ERROR,id
来源: https://blog.csdn.net/ladymorgana/article/details/121928979