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
解决方案:查询多张表时给每张表取名,表名.字段来表示
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。