InfluxQL
1 program
Added 2026-02-12T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b448645e2b · authored 2026-02-12T14:46:28+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Time-Series Aggregation with Grouping
Provenance: commit b448645e2b · authored 2026-02-12T14:46:28+01:00 · agent claude-code · model sonnet · WebSearch disabled
SELECT mean("water_level") AS "mean_water_level"
FROM "h2o_feet"
WHERE time >= '2019-08-18T00:00:00Z' AND time <= '2019-08-18T00:30:00Z'
GROUP BY time(12m), "location"
FILL(linear)