Preview:
SELECT *
FROM CITY
where population < ALL
(select population
 from country) 

  -- same way you have ANY operator as well

  SELECT *
  FROM TRIP
  WHERE price = ANY(
  SELECT price 
  FROM HIKING_TRIP)
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter