Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 820 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 820 Bytes

leetcode-Big-Countries challenge

This is a Leetcode SQL challenge.

The challenge is as follows.

part1 part2 part3

Upon going through the challenge, below is my code executed on phpmyAdmin database.

SELECT name, population, area FROM World WHERE area >=3000000 or population >=25000000

And this is the output to the solution simiral to the challenge output. yeah!

solution

Try it too