Selecting all columns
Written by
Updated at July 1, 2026
To select all columns, use the following SELECT statement:
SELECT -- Data selection statement.
* -- Select all columns.
FROM
`tutorial-analytics`
Check the example in the right-hand section and click
The query result will appear in the Result tab as a table or chart.