Note the following syntax is for Postgres SQL, although they are all very similar

Before Starting to learn about SQL, know some of the essential characteristics of SQL language that’ll help your learning SQL journey:

MODULE 1: Basics

MODULE 2: Filtering

Comparison Operators (use in Where clause)

Creating New Columns

/* You can create new columns / constant columns */
SELECT date, high - low AS day_range, 999 as constant_column
FROM tutorial.aapl_historical_stock_price