[Yandex Cloud documentation](../../index.md) > [Yandex Query](../index.md) > [Working with YQL](index.md) > Selecting all columns

# Selecting all columns

To select all columns, use the following SELECT statement:

```sql
SELECT  -- Data selection statement.
    *   -- Select all columns.
FROM
    `tutorial-analytics`
```

Check the example in the right-hand section and click ![run](../../_assets/console-icons/play-fill.svg) **Run**.
The query result will appear in the **Result** tab as a table or chart.