I am using Grafana with a MySQL data source on Linux Mint. The timestamp column of one of the tables with data I want to visualize contains time stamps in UTC. I’d like that to be converted to the ...
Alternative solutions would be to just cast to a date, but this requires a code change for existing applications. SELECT timestamp_column::DATE FROM table_name; Another solution could be a UDF, but ...