nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Column 'tenant_id' specified twice
时间: 2023-09-28 19:06:04 浏览: 209
Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: ….. this is incompatible with sq
这个错误是由于你在SQL查询中重复指定了'tenant_id'列,导致MySQL语法错误。你需要检查你的SQL查询语句,确保没有重复指定同一个列。你可以使用别名来解决这个问题,例如:
SELECT table1.tenant_id as id1, table2.tenant_id as id2 FROM table1 JOIN table2 ON table1.id = table2.id;
这个查询使用了别名来区分两个表中的'tenant_id'列。
阅读全文