From 81e7a2f20c59b8c200af5ef64d02fa73499774d3 Mon Sep 17 00:00:00 2001 From: Deven <63876261+devenperez@users.noreply.github.com> Date: Thu, 26 Jan 2023 23:14:56 -0500 Subject: [PATCH] Time: 675 ms (5.02%), Space: 0B (100.00%) - LeetHub --- 595-big-countries/595-big-countries.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 595-big-countries/595-big-countries.sql diff --git a/595-big-countries/595-big-countries.sql b/595-big-countries/595-big-countries.sql new file mode 100644 index 0000000..7146dd0 --- /dev/null +++ b/595-big-countries/595-big-countries.sql @@ -0,0 +1,7 @@ +# Write your MySQL query statement below +SELECT + name, + population, + area +FROM World +WHERE area >= 3000000 OR population >= 25000000; \ No newline at end of file