Selecting data from all columns
Written by
Updated at March 5, 2024
To select data from all columns, use the SELECT statement:
SELECT -- Data selection operator.
* -- Select all columns.
FROM
`tutorial-analytics`
Take a look at the example on the right and click
Query results are available in the Result tab as a table or schema.