Selecting data from all columns
Select all columns from the table using SELECT:
Note
We assume that you already created tables in step Creating a table and populated them with data in step Adding data to a table.
SELECT -- Data selection operator.
* -- Select all columns from the table.
FROM episodes; -- The table to select the data from.
COMMIT;