Introduction to Structured Query Language for Data Analytics (WS23SQL1001) — Day 2

We are finally writing code to query data from tables.

    SELECT field1, field2...
    FROM table1 AS t1
    INNER|LEFT|RIGHT JOIN table2 AS t2
    ON t1.common_data = t2.common_data;

Download the class notes for day 2.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.