Created
October 10, 2022 12:58
-
-
Save abevieiramota/838607166450bd160ab48e335d2c84c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- retorna a cidade com maior nome | |
( | |
select city, char_length(city) | |
from station | |
order by 2 desc, 1 asc | |
limit 1 | |
) | |
union all | |
-- retorna a cidade com menor nome | |
( | |
select city, char_length(city) | |
from station | |
order by 2 asc, 1 asc | |
limit 1 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment