Skip to content

Commit 7b97dff

Browse files
committed
solve problem of database Big Countries
1 parent cc46e52 commit 7b97dff

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,7 @@ All solutions will be accepted!
3434
|258|[Add Digits](https://leetcode-cn.com/problems/add-digits/description/)|[java/py/js](./algorithms/AddDigits)|Easy|
3535
|520|[Detect Capital](https://leetcode-cn.com/problems/detect-capital/description/)|[java/py/js](./algorithms/DetectCaptial)|Easy|
3636
|682|[BaseBall Game](https://leetcode-cn.com/problems/baseball-game/description/)|[java/py/js](./algorithms/BaseBallGame)|Easy|
37-
|404|[Sum Of Left Leaves](https://leetcode-cn.com/problems/sum-of-left-leaves/description/)|[java/py/js](./algorithms/SumOfLeftLeaves)|Easy|
37+
|404|[Sum Of Left Leaves](https://leetcode-cn.com/problems/sum-of-left-leaves/description/)|[java/py/js](./algorithms/SumOfLeftLeaves)|Easy|
38+
39+
# Database
40+
|596|[Big Countries](https://leetcode-cn.com/problems/big-countries/description/)|[mysql](./database/BigCountries)|Easy|

database/BigCountries/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Big Countries
2+
This problem is easy to solve

database/BigCountries/solution.sql

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
select name, population, area from World where area > 3000000 or population > 25000000

0 commit comments

Comments
 (0)