Introduction to Structured Query Language for Data Analytics (WS24SQL10001) — Day 4

We continue working with functions and have introduced aggregate functions. We have also started adding logic to queries using CASE clauses.

    CASE
      WHEN condition1
        THEN action1
      WHEN condition2
        THEN action2
      -- more conditions + actions
      ELSE escape_action
    END

Download the class notes for day 4.

Leave a Reply

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