Documentation

Get started querying data

InfluxDB supports many different tools for querying data, including:

This tutorial walks you through the fundamentals of querying data in InfluxDB and focuses primarily on the two languages you can use to query your time series data:

  • Flux: A functional scripting language designed to query and process data from InfluxDB and other data sources.
  • InfluxQL: A SQL-like query language designed to query time series data from InfluxDB.

The examples in this section of the tutorial query the data from written in the Get started writing data section.

On this page:

Query data with Flux

Flux is a functional scripting language that lets you query and process data from InfluxDB and other data sources.

This is a brief introduction to writing Flux queries. For a more in-depth introduction, see Get started with Flux.

Flux query basics

When querying InfluxDB with Flux, there are three primary functions you use:

  • from(): Queries data from an InfluxDB bucket.

  • range(): Filters data based on time bounds. Flux requires “bounded” queries—queries limited to a specific time range.

  • filter(): Filters data based on column values. Each row is represented by r and each column is represented by a property of r. You can apply multiple subsequent filters.

    To see how from() structures data into rows and tables when returned from InfluxDB, view the data written in Get started writing to InfluxDB.

    Learn more about how filter() works

Pipe-forward operator

Flux uses the pipe-forward operator (|>) to pipe the output of one function as input the next function as input.

Query the example data

The following Flux query returns the co, hum, and temp fields stored in the home measurement with timestamps between 2022-01-01T08:00:00Z and 2022-01-01T20:00:01Z.

from(bucket: "get-started")
    |> range(start: 2022-01-01T08:00:00Z, stop: 2022-01-01T20:00:01Z)
    |> filter(fn: (r) => r._measurement == "home")
    |> filter(fn: (r) => r._field== "co" or r._field == "hum" or r._field == "temp")
  • Copy
  • Fill window

Execute a Flux query

Use the InfluxDB UI, influx CLI, or InfluxDB API to execute Flux queries.

  1. If you haven’t already, download, install, and configure the influx CLI.

  2. Use the influx query command to query InfluxDB using Flux.

    Provide the following:

influx query '
from(bucket: "get-started")
    |> range(start: 2022-01-01T08:00:00Z, stop: 2022-01-01T20:00:01Z)
    |> filter(fn: (r) => r._measurement == "home")
    |> filter(fn: (r) => r._field== "co" or r._field == "hum" or r._field == "temp")
'
  • Copy
  • Fill window

Flux query results

View Flux query results

Query data with InfluxQL

InfluxQL is a SQL-like query language similar to most SQL languages, but specifically designed to query time series data from InfluxDB 0.x and 1.x.

Map databases and retention policies to buckets

Because InfluxQL was developed for earlier versions of InfluxDB, it depends on databases and retention policies (DBRP) which have been replaced by buckets in InfluxDB Cloud. To use InfluxQL with InfluxDB Cloud, first map database and retention policy (DBRP) combinations to an InfluxDB bucket.

InfluxQL query basics

When querying InfluxDB with InfluxQL, the most basic query includes the following statements and clauses:

  • SELECT: Specify which fields and tags to query.
  • FROM: Specify the measurement to query. Use the measurement name or a fully-qualified measurement name which includes the database and retention policy. For example: db.rp.measurement.
  • WHERE: (Optional) Filter data based on fields, tags, and time.

The following InfluxQL query returns the co, hum, and temp fields and the room tag stored in the home measurement with timestamps between 2022-01-01T08:00:00Z and 2022-01-01T20:00:00Z.

SELECT co,hum,temp,room FROM "get-started".autogen.home WHERE time >= '2022-01-01T08:00:00Z' AND time <= '2022-01-01T20:00:00Z'
  • Copy
  • Fill window

These are just the fundamentals of the InfluxQL syntax. For more in-depth information, see the InfluxQL documentation.

Execute an InfluxQL query

Use the influx CLI, or InfluxDB API to execute InfluxQL queries.

Authentication credentials

The examples below assume your InfluxDB host, organization, and token are provided by either the active influx CLI configuration or by environment variables (INFLUX_HOST, INFLUX_ORG, and INFLUX_TOKEN). If you do not have a CLI configuration set up or the environment variables set, include these required credentials for each command with the following flags:

  • --host: InfluxDB host
  • -o, --org or --org-id: InfluxDB organization name or ID
  • -t, --token: InfluxDB API token
  1. If you haven’t already, download, install, and configure the influx CLI.

  2. Use the influx v1 shell command to start an InfluxQL shell and query InfluxDB using InfluxQL. Provide the following:

    influx v1 shell
    
    • Copy
    • Fill window
  3. Enter an InfluxQL query and press Enter ↵.

    SELECT co,hum,temp,room FROM "get-started".autogen.home WHERE time >= '2022-01-01T08:00:00Z' AND time <= '2022-01-01T20:00:00Z'
    
    • Copy
    • Fill window

InfluxQL query results

View InfluxQL query results

Congratulations! You’ve learned the basics of querying data in InfluxDB. For a deep dive into all the ways you can query InfluxDB, see the Query data in InfluxDB section of documentation.

Let’s move on to more advanced data processing queries and automating queries with InfluxDB tasks.


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 powered by TSM