added order by clause for display purposes

pull/79/head
Chris Veilleux 2019-03-18 00:23:43 -05:00
parent 159ce1c06b
commit f0229319d5
4 changed files with 8 additions and 0 deletions

View File

@ -9,3 +9,5 @@ FROM
INNER JOIN geography.timezone t ON c.timezone_id = t.id
WHERE
region_id = %(region_id)s
ORDER BY
c.name

View File

@ -4,3 +4,5 @@ SELECT
name
FROM
geography.country
ORDER BY
name

View File

@ -6,3 +6,5 @@ FROM
geography.region
WHERE
country_id = %(country_id)s
ORDER BY
name

View File

@ -7,3 +7,5 @@ FROM
geography.timezone
WHERE
country_id = %(country_id)s
ORDER BY
name