LXLogicExcel
๐Ÿ”ฅ
0
โญ
0
WHERE Clause - Filtering Rows1 / 10
In SQL, the WHERE clause lets you filter the results for rows which meet a certain criteria. Take a look at the planets table below. You want to return only the planets that are classified as Gas Giants. Try typing:

SELECT * FROM planets WHERE type = 'Gas Giant';.
Notice that in SQL, text goes inside single quotes, while numbers do not.
planet_idnametypemoonsdistance_from_sun
101MercuryRocky058
102VenusRocky0108
103EarthRocky1150
104JupiterGas Giant79778
105SaturnGas Giant821430
106NeptuneIce Giant144500

Ctrl+Enter to submit

๐Ÿ”ฅ 0 streak
โญ 0 XP this lesson
All Lessons

WHERE Clause - Filtering Rows - Free SQL Practice Online

Practise WHERE Clause - Filtering Rows with 10 free, interactive SQL exercises. You type real queries into your browser and get instant feedback on every answer - no database setup, no install, and no signup. It is a fast, hands-on way to learn SQL online and build query skills you can use at work.