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 DISTINCT ShipCountry
FROM Orders
ORDER BY ShipCountry;
SELECT DISTINCT ShipCountry AS SC, Switch(InStr("Argentina Brazil Venezuela",[SC])>0,"SA",InStr("Canada Mexico USA",[SC])>0,"NA",True,"EU") AS Cont
FROM Orders;