Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
every store that has T-shirts of all sizes
SELECT S.name
FROM Store S INNER JOIN (
SELECT DISTINCT ST.store,T.size FROM StoreTshirt ST INNER JOIN Tshirt T ON ST.tshirt=T.tid
) D ON S.sid=D.store
GROUP BY S.name
HAVING COUNT(*)=(SELECT COUNT(*) FROM Size)