Posts by Eduardo Duude • 29 points
1 post
-
2
votes2
answers700
viewsQ: Query with Left Join without returning duplicate value
I have the table tableA and tableB. I’m making a select of all fields of both tables joining the same by left Join select * from tableA left join tableB on tableA.id = tableB.id But the relationship…