You can head on over directly to my SQL quiz or preview the questions here.
Given the following two tables: [sourcecode language=”text”] select * from a; select * from b; +——+——-+ +——+——-+——+ | id | label | | id | label | a_id | +——+——-+ +——+——-+——+ | 1 | Alpha | | 1 | I | 1 | | 2 | Beta | | 2 | II | 1 | | 3 | Gamma | | 3 | III | 2 | +——+——-+ +——+——-+——+ [/sourcecode] What would be the result of each of the following SQL statements….. (continued) Head over to the interactive SQL quiz to match the queries with the results.