SQLZOO:SELECT basics
name | continent | area | population | gdp |
---|---|---|---|---|
http://3.bp.blogspot.com/-WhIR1-7fjDY/USfQczV-glI/AAAAAAAACEY/wSb7UY-Xp9o/s1600/roy.jpg | Asia | 652230 | 25500100 | 20343000000 |
Albania | Europe | 28748 | 2831741 | 12960000000 |
Algeria | Africa | 2381741 | 37100000 | 188681000000 |
Andorra | Europe | 468 | 78115 | 3712000000 |
Angola | Africa | 1246700 | 20609294 | 100990000000 |
.... |
Hello! http://3.bp.blogspot.com/-WhIR1-7fjDY/USfQczV-glI/AAAAAAAACEY/wSb7UY-Xp9o/s1600/roy.jpg
http://savewalterwhite.com/ , , http://seesbeauty.me/ , , http://anal.com/ , , http://onlinepillsonline.com/ , ,
Checking a list The word IN allows us to check if an item is in a list. The example shows the name and population for the countries 'Ireland', 'Iceland' and 'Denmark'
SELECT name, population FROM world
WHERE name IN ('Ireland', 'Iceland',
'Denmark')
SELECT name, population FROM world
WHERE name IN ('Denmark', 'Finland',
'Norway', 'Sweden')
Starts with G
What are the countries beginning with G?
The word LIKE
permits pattern matching - % is the wildcard.
The examples shows countries beginning with D
SELECT name FROM world
WHERE name LIKE 'D%'
SELECT name FROM world
WHERE name LIKE 'G%'
Just the right size
Which countries are not too small and not too big? Show the country and the area for countries with an area between 207600 and 244820.
BETWEEN
allows range checking - note that it is inclusive.
SELECT name, area FROM world
WHERE area BETWEEN 207600 AND 244820...
SELECT name, area/1000 FROM world
WHERE area BETWEEN 207600 AND 244820
You are ready for tutorial one:SELECT statements with WHERE.
Language: | English |
---|