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.
SELECT T3.LOCATION
FROM TABLE3 T3
WHERE T3.ITEM in (
SELECT T2.item
FROM TABLE2 T2
WHERE T2.ITEM in (
SELECT T1.ITEM
FROM TABLE1 T1
WHERE T1.NUMBER = 123))