本文主要是介绍【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
这篇关于【bug - postgresql】PSQLException: ERROR: column reference “id“ is ambiguous的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!