Skip to content

Commit a7ffdbb

Browse files
author
tulsirijal2019@gmail.com
committed
Merge branch 'develop' of https://github.com/group9-devops/devops into develop
2 parents 0c8525e + 3d741a1 commit a7ffdbb

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/main/resources/sql.properties

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
sql.exampleQuery=USE world; \
2+
SELECT country.Name AS Country, city.Name AS CapitalCity, city.Population AS CapitalPopulation \
3+
FROM country AS country \
4+
INNER JOIN city AS city ON country.Capital = city.ID \
5+
WHERE country.Capital IS NOT NULL \
6+
ORDER BY city.Population DESC \
7+
LIMIT 10;

0 commit comments

Comments
 (0)