I have a table with 2 columns:
When I add a table panel with SQL statement SELECT * FROM xiaomi_th_alex_temperature_0026
I get: (which is correct)
But I would like to have all this data in a graph, I tried:
SELECT
UNIX_TIMESTAMP(time) as time_sec,
value as value
FROM xiaomi_th_alex_temperature_0026
WHERE $__timeFilter(time)
ORDER BY time ASC
But I receive the following error: Found row with no time value
I suppose the date format isn’t correct, but don’t know what do modify.