User Profile
Collapse
-
I need to connect these two queries into a single one -
Join 2 qureries
How to join these queries without union all
Code:select f.mobid, f.merchant, f.price from ( select mobid, min(price) as minprice from tbl_merchant group by mobid ) as x inner join tbl_merchant as f on f.mobid = x.mobid and f.price = x.minprice order by mobid
Code:select f.mobid, f.merchant, f.price
No activity results to display
Show More
Leave a comment: