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

We are getting data from a table.

  SELECT field1,
    field2,
    field3
  FROM table1;

We are getting data from tables.

  SELECT table1.common_field1, -- field/data on both tables
    table1.field2,
    table2.field3,
    table2.field4
  FROM table1 -- left table (main if `LEFT JOIN`)
  INNER|LEFT|RIGHT JOIN table2 -- right table (main if `RIGHT JOIN`)
    ON table1.common_field1 = table2.common_field1; -- relation between tables

Download the class notes for day 2.

Installing SQL Server Express in macOS #4

Free:

  1. Install Docker Desktop on Mac
    https://docs.docker.com/desktop/setup/install/mac-install/
  2. How To Install SQL Server on Mac (M1 | M2 | M3)
    https://www.youtube.com/watch?v=3BFxALltQaM
  3. DBeaver – Microsoft SQL Server
    https://dbeaver.com/docs/dbeaver/Database-driver-Microsoft-SQL-Server/

Paid:

  1. Buying Parallels
    https://www.parallels.com/
  2. Buying a copy of Windows
    https://www.microsoft.com/en-us/software-download/windows11

More information:

  1. Installing SQL Server Express in macOS
  2. Installing SQL Server Express in macOS #2
  3. Installing SQL Server Express in macOS #3

For reference purposes only, not responsible for external resources.