mysql关联查询报错:
[Err] 1052 - Column 'STATUS' in where clause is ambiguous
解决方法:
多表关联查询的时候有where语句中两个相同的列名STATUS,而没有指定是哪个表。
例如:
SELECT t.status
FROM book t
LEFT JOIN category t2 ON t.cid = t2.id
where status=0
mysql关联查询报错:
[Err] 1052 - Column 'STATUS' in where clause is ambiguous
解决方法:
多表关联查询的时候有where语句中两个相同的列名STATUS,而没有指定是哪个表。
例如:
SELECT t.status
FROM book t
LEFT JOIN category t2 ON t.cid = t2.id
where status=0
有建议,请留言!