column 'id' in field list is ambiguous
Posted Fight With Me!!!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了column 'id' in field list is ambiguous相关的知识,希望对你有一定的参考价值。
column ‘id‘ in field list is ambiguous
这个错误,是因为你查询语句里面有id字段的时候,没有说明是哪个表的id字段,应该加上表名(或者别名)来区分。
用表名进行区分的例子:
select student.id, student.name, score.total
from student, score
where student.id = score.id
使用别名的例子:
用表名进行区分的例子:
select s.id, s.name, c.total
from student s, score c
where s.id = c.id
许多教材都大量使用别名,其实对于初学者,我建议大家看得懂别名就行,自己写的时候用表名好
补充:LEFT函数的参数必须是字段,字段的完成形式是加上表名的,LEFT前面弄个表名就会语法错误的,应该这样:
select left(student.name, 10) .....
以上是关于column 'id' in field list is ambiguous的主要内容,如果未能解决你的问题,请参考以下文章
错误代码 1052 Column 'stu id' in field list is ambiguous
错误:Column 'Id' in field list is ambiguous
在MySQL中出现Unknown column 'abc' in 'field list'怎么解决?
mybatis Column 'XXX' in where clause is ambiguous 错误
syntax error, error in :'e id=1?', expect QUES, actual QUES pos 66, line 1, column 66, token
Python Flask 向MySQL表里插入一条记录,提示Unknown column 'XXX' in 'field list