Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 2.68 KB

01-Intermediate.md

File metadata and controls

54 lines (42 loc) · 2.68 KB

Intermediate

Aliases, Joins, Functions and Operators

By the end of this section, you will be able to:

  1. Rename a column and table using an alias
  2. Join tables to retrieve data across a database
  3. Display data using the arithmetic operators +, -, * / and %
  4. Display data using the aggregate functions COUNT, MIN, MAX and AVG
  5. Filter aggregated data using HAVING and GROUP BY
  6. Change the display of data using NULL and CASE

Prerequisites

You can complete the 3 assessment items for the Beginning Workshop.

Lesson

Objective 1: Rename a column and table using an alias

  • SQL AS
    • Complete at least one exercise to rename a column, and another to rename a table.

Objective 2: Join tables to retrieve data across a database

Objective 3: Display data using the arithmetic operators +, -, * / and %

Objective 4: Display data using the aggregate functions COUNT, MIN, MAX, AVG, SUM, GROUP BY

Objective 5: Filter aggregated data using HAVING and GROUP BY

Objective 6: Change the display of data using NULL and CASE

Assessment

Stretch Activities