Start with the input table and name the columns out loud.
Read SELECT * as "keep every column".
Compare the output table with the input table; the shape and rows should match.
Nothing has been filtered, sorted, or deduped yet. This page is the baseline for the later SELECT lessons where one part of the table changes.
SELECT all columns preserves the whole table shape before narrowing the analysis.
highlighted = computed this step
Input table
Start with the full Orders table.
Orders
Select query
SELECT all named columns keeps the same table shape.
SELECT all columns
Output table
The output has every column and every row from the input.