Is it possible to filter the data shared between panels in Grafana?
Let's say I would query all the columns in the first panel with:
SELECT time, A, B, C, D FROM "table"
And in a second panel, I would like to show only A
end B
, how can I filter that columns?
Thanks!