Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Get to know the data
3. Get to know the Student table
JOIN revisited
LEFT JOIN
RIGHT JOIN
FULL JOIN
OUTER JOINS
Aliases for tables

Instruction

We'll also use another table named Student. Let's check the contents of this table as well.

Exercise

Get all data from the Student table.

Stuck? Here's a hint!

Type:

SELECT
  *
FROM Student;