Difference between revisions of "BBC QUIZ"
From SQLZOO
| Line 3: | Line 3: | ||
{Select the code which gives the name of countries beginning with C | {Select the code which gives the name of countries beginning with C | ||
|type="()"} | |type="()"} | ||
| − | <label> | + | <input type="radio" id="1a" value="1" /><label for="1a"> |
| − | - A. SELECT name FROM bbc WHERE name BEGIN with C | + | -A. SELECT name FROM bbc WHERE name BEGIN with C |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
</label> | </label> | ||
| + | <input type="radio" id="1b" value="2" /><label for="1b"> | ||
| + | -B. SELECT name FROM bbc WHERE name LIKE '%C' | ||
| + | </label> | ||
| + | -C. SELECT name FROM bbc WHERE name LIKE '%C%' | ||
| + | -D. SELECT name FROM bbc WHERE name LIKE C | ||
| + | +E. SELECT name FROM bbc WHERE name LIKE 'C%' | ||
{Select the code which shows just the population of United Kingdom? | {Select the code which shows just the population of United Kingdom? | ||
Revision as of 09:06, 23 July 2012
BBC QUIZ