Documentation

Query SQL databases

Use sql.from() to query SQL databases with Flux.

Databases

sql.from() supports the following SQL databases:

Drivers

sql.from() uses Go SQL drivers in the Go sql package to connect to SQL databases. The following drivers are available:

  • awsathena
  • bigquery
  • hdb
  • mysql
  • postgres
  • snowflake
  • sqlite3
  • sqlserver
  • vertica, vertigo

Data source names

Each SQL driver supports unique data source name (DSN) syntaxes (also known as connection strings). See the database guides for information about DSNs for each driver.

Store sensitive credentials as secrets

If using InfluxDB Cloud or InfluxDB OSS 2.x, we recommend storing DSN credentials as InfluxDB secrets. Use secrets.get() to retrieve a secret from the InfluxDB secrets API.

import "sql"
import "influxdata/influxdb/secrets"

username = secrets.get(key: "POSTGRES_USER")
password = secrets.get(key: "POSTGRES_PASS")

sql.from(
    driverName: "postgres",
    dataSourceName: "postgresql://${username}:${password}@localhost:5432",
    query: "SELECT * FROM example_table",
)

Results structure

sql.from() returns a stream of tables with no grouping (all rows in a single table). For more information about table grouping, see Flux data model - Restructure tables.

Column data types

Each sql.from() driver converts column data types from the source database into Flux data types. See the database guides for information about data type conversions.

Given the following example_table in a MySQL database:

example_table
ID Name Address Country
1 Alfreds Futterkiste Obere Str. 57 Germany
2 Ana Trujillo Emparedados y helados Avda. de la Constitución 2222 Mexico
3 Antonio Moreno Taquería Mataderos 2312 Mexico
4 Around the Horn 120 Hanover Sq. UK
5 Berglunds snabbköp Berguvsvägen 8 Sweden
Flux query
import "sql"

sql.from(
    driverName: "mysql",
    dataSourceName: "username:passwOrd@tcp(localhost:3306)/db",
    query: "SELECT ID, Name FROM example_table",
)
Output
ID Name
1 Alfreds Futterkiste
2 Ana Trujillo Emparedados y helados
3 Antonio Moreno Taquería
4 Around the Horn
5 Berglunds snabbköp

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: