Difference between revisions of "JOIN Quiz 2"
From SQLZOO
| Line 93: | Line 93: | ||
{Using <code>SELECT name, dept, COALESCE(dept, 0) AS result FROM teacher</code> on <code>teacher</code> table will: | {Using <code>SELECT name, dept, COALESCE(dept, 0) AS result FROM teacher</code> on <code>teacher</code> table will: | ||
|type="()"} | |type="()"} | ||
| − | - | + | - display 0 in result column for all teachers |
| − | + | + display 0 in result column for all teachers without department | |
| − | + | + | - do nothing - the statement is incorrect |
| − | - | + | - set dept value of all teachers to 0 |
| − | - | + | - set dept value of all teachers without department to 0 |
</quiz> | </quiz> | ||
[[Category:Quizzes]] | [[Category:Quizzes]] | ||
Revision as of 13:37, 18 July 2012
JOIN Quiz - part 2
| id | dept | name | phone | mobile |
|---|---|---|---|---|
| 101 | 1 | Shrivell | 2753 | 07986 555 1234 |
| 102 | 1 | Throd | 2754 | 07122 555 1920 |
| 103 | 1 | Splint | 2293 | |
| 104 | Spiregrain | 3287 | ||
| 105 | 2 | Cutflower | 3212 | 07996 555 6574 |
| 106 | Deadyawn | 3345 |
| id | name |
|---|---|
| 1 | Computing |
| 2 | Design |
| 3 | Engineering |