我如何编写一个使用 Or 运算符连接两个表的查询例如:
select upc,ean,productName
from maintable m1 left join maintable2 m2
on m2.upc = m1.upc OR m2.ean = m1.ean
我如何编写一个使用 Or 运算符连接两个表的查询例如:
select upc,ean,productName
from maintable m1 left join maintable2 m2
on m2.upc = m1.upc OR m2.ean = m1.ean