Documentation

InfluxQL subqueries

An InfluxQL subquery is a query nested in the FROM clause of an InfluxQL query. The outer query queries results returned by the inner query (subquery).

InfluxQL does not support a HAVING clause, however InfluxQL subqueries offer functionality similar to the SQL HAVING clause.

Syntax

SELECT_clause FROM ( SELECT_statement ) [...]
  • Copy
  • Fill window

When using subqueries, InfluxQL performs the inner query first, then performs the outer query.

The outer query requires a SELECT clause and a FROM clause. The inner query is enclosed in parentheses in the outer query’s FROM clause.

InfluxQL supports multiple nested subqueries:

SELECT_clause FROM ( SELECT_clause FROM ( SELECT_statement ) [...] ) [...]
  • Copy
  • Fill window

Examples

Sample data

The examples below use the following sample data sets:

Apply an aggregate function to an aggregated result set

Calculate the average difference between two fields

Filter aggregate values based on a threshold

Perform additional aggregate operations on aggregate values

Notable subquery behaviors

Apply time bounds to the outer query to improve performance

To improve the performance of InfluxQL queries that use subqueries and a specified time range, apply the WHERE clause with time-based predicates to the outer query rather than the inner query. For example–the following queries return the same results, but the query with time-based predicate on the outer query is more performant than the query with time-based predicate on the inner query:

Time bounds on the outer query

SELECT
  inner_value AS value
FROM
  (
    SELECT
      raw_value as inner_value
  )
WHERE
  time >= '2025-03-25T08:00:00Z'
  AND time <= '2025-03-25T20:00:00Z'
  • Copy
  • Fill window

Time bounds on the inner query

SELECT
  inner_value AS value
FROM
  (
    SELECT
      raw_value as inner_value
    WHERE
      time >= '2022-07-19T08:00:00Z'
      AND time <= '2025-03-25T20:00:00Z'
  )
  • Copy
  • Fill window

Cannot use multiple SELECT statements in a subquery

InfluxQL does not support multiple SELECT statements per subquery:

SELECT_clause FROM (SELECT_statement; SELECT_statement) [...]
  • Copy
  • Fill window

However, InfluxQL does support multiple nested subqueries per outer query:

SELECT_clause FROM ( SELECT_clause FROM ( SELECT_statement ) [...] ) [...]
                     ------------------   ----------------
                         Subquery 1          Subquery 2
  • Copy
  • Fill window

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.

Read more

InfluxDB 3 Core and Enterprise are now in Beta

InfluxDB 3 Core and Enterprise are now available for beta testing, available under MIT or Apache 2 license.

InfluxDB 3 Core is a high-speed, recent-data engine that collects and processes data in real-time, while persisting it to local disk or object storage. InfluxDB 3 Enterprise is a commercial product that builds on Core’s foundation, adding high availability, read replicas, enhanced security, and data compaction for faster queries. A free tier of InfluxDB 3 Enterprise will also be available for at-home, non-commercial use for hobbyists to get the full historical time series database set of capabilities.

For more information, check out:

InfluxDB Cloud Serverless