In the pubs
database I want to find out stores that have orders with more than one title on the order. I have joined the table but the logic to apply to find the order which have more than one title I can't understand
SELECT
title, stores.stor_name, S.ord_num, S.qty
FROM
sales S
JOIN
titles T ON (S.title_id = T.title_id)
JOIN
stores ON (S.stor_id = stores.stor_id)