华为云首页
用户手册
数据湖探索 DLI-对两个表进行join操作时,提示:SQL_ANALYSIS_ERROR: Reference 't.id' is ambiguous, could be: t.id, t.id.;
数据湖探索 DLI-对两个表进行join操作时,提示:SQL_ANALYSIS_ERROR: Reference 't.id' is ambiguous, could be: t.id, t.id.;
时间:2024-11-06 21:53:29
对两个表进行join操作时,提示:SQL_ANALYSIS_ERROR: Reference 't.id' is ambiguous, could be: t.id, t.id.;
出现这个提示,表示进行join操作的两个表中包含相同的字段,但是在执行命令时,没有指定该字段的归属。
例如:在表tb1和tb2中都包含字段“id”。
错误的命令:
select id from tb1 join tb2;
正确的命令:
select tb1.id from tb1 join tb2;
父主题: SQL作业运维类
support.huaweicloud.com/dli_faq/dli_03_0066.html