Table Panel Groups Rows by Column Values Instead of Displaying Raw Data

  • What Grafana version and what operating system are you using?
    11.1

  • What are you trying to achieve?
    Display raw data from an sql query in a Table View

  • How are you trying to achieve it?
    I have the following SQL query.
    SELECT event_timestamp, app_version_name, event_ecid FROM events_v2_static.level_started WHERE device_cudi = '$cudi' ORDER BY 1

I would expect the follwoing:

|2024-05-18 04:35:16.579771 | 1.0.0 | 33|
|2024-05-18 04:36:29.293728 | 1.0.0 | 62|
|2024-05-18 04:37:14.730367 | 1.0.0 | 84|

but I get

It is grouping the rows based on the app_version_name. So for each distinct app_version_name I get an additional row. But I just want the app_version_name as its own row.

How looks the raw “Table view”?