left join 左联表 where条件查询时
<if test="status != null and status != ''"> and status = #{status}</if>
没有声明是哪一个表,两表均有status字段
报错Column 'status' in where clause is ambiguous
解决方案:查询多张表时给每张表取名,表名.字段来表示
left join 左联表 where条件查询时
<if test="status != null and status != ''"> and status = #{status}</if>
没有声明是哪一个表,两表均有status字段
报错Column 'status' in where clause is ambiguous
解决方案:查询多张表时给每张表取名,表名.字段来表示