I am trying to join up a few tables and examples of the layouts are below:
orders
user_id=7 pricing id=37
products_pricing
Yes this can be done using the INNER join itself.and fetch select column in select statement.
SELECT
p.id,
p.name,
l.url,
o.user_id,
o.pricing_id
FROM orders AS o
INNER JOIN products_pricing AS pp ON o.pricing_id = pp.id
INNER JOIN products AS p ON pp.product_id = p.id
INNER JOIN listings AS l ON l.user_id = o.user_id
WHERE o.user_id ='7'
AND l.id = 233
AND l.url = 'test.com';