Err I apologize for the title, but I forgot what its actually called in SQL lingo.
Thing is using this query:
SELECT DISTINCT a.col1, a.col2,a.col3,c.col1, c.col2
FROM table1 a
LEFT JOIN table2 c ON a.col1 = c.col3
WHERE a.col2 = '038CQH'
I get a result with around 56000 rows, but when I checked using:
SELECT a.col1, a.col2,a.col3 FROM table1 a where a.col2='038CQH'
I get only 4 rows.