Documentation

ORDER BY clause

Limited availability

InfluxDB Clustered is currently only available to a limited group of InfluxData customers. If interested in being part of the limited access group, please contact the InfluxData Sales team.

The ORDER BY clause sort results by specified columns and order. Sort data based on fields, tags, and timestamps. The following orders are supported:

Syntax

[SELECT CLAUSE] [FROM CLAUSE] [ ORDER BY expression [ ASC | DESC ][, ] ]

Note: If your query includes a GROUP BY clause, the ORDER BY clause must appear after the GROUP BY clause.

Examples

Sort data by time with the most recent first

SELECT
  "water_level", "time"
FROM
  "h2o_feet" 
WHERE
  "location" = 'coyote_creek'  
ORDER BY
  time DESC

View example results

Sort data by tag or field values

SELECT
  "water_level", "time", "location"
FROM
  "h2o_feet" 
ORDER BY
  "location", "water_level" DESC

Sort data by selection order

SELECT
  "location","water_level", "time"
FROM
  "h2o_feet"
ORDER BY
  1, 2

View example results


Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Flux is going into maintenance mode and will not be supported in InfluxDB 3.0. This was a decision based on the broad demand for SQL and the continued growth and adoption of InfluxQL. We are continuing to support Flux for users in 1.x and 2.x so you can continue using it with no changes to your code. If you are interested in transitioning to InfluxDB 3.0 and want to future-proof your code, we suggest using InfluxQL.

For information about the future of Flux, see the following: