mysql多表关联查询报了下面的错误:
Column ‘merchant_code’ in where clause is ambiguous
这是因为关联查询的多个表都有同一个字段名,需要加上表限定
如:
select a.name from table a,table b where a.ref_id=b.id and b.name=‘XXX’
mysql多表关联查询报了下面的错误:
Column ‘merchant_code’ in where clause is ambiguous
这是因为关联查询的多个表都有同一个字段名,需要加上表限定
如:
select a.name from table a,table b where a.ref_id=b.id and b.name=‘XXX’