Related to "sql"
Query data with SQL
Learn to query data stored in InfluxDB Cloud Serverless using SQL.
Explore your schema with SQL
When working with InfluxDB’s implementation of SQL, a bucket is equivalent to a database, a measurement is structured as a table, and time, fields, and tags are structured as columns.
Go Flight SQL client
The Go Flight SQL client integrates with golang scripts and applications to query data stored in an InfluxDB Cloud Serverless bucket.
Java Flight SQL package
The org.apache.arrow.flight.sql
package integrates with Java applications to query and retrieve data from Flight database servers using RPC and SQL.
Python client library for InfluxDB v3
The InfluxDB v3 pyinflux3
Python client library integrates with Python scripts and applications and provides a standalone CLI to write and query data stored in an InfluxDB Cloud Serverless bucket.
Python FlightSQL-DBAPI client
The Python flightsql-dbapi
library integrates with Python scripts and applications to query data stored in an InfluxDB Cloud Serverless bucket.
Perform a basic SQL query
A basic SQL query that queries data from InfluxDB most commonly includes SELECT
, FROM
, and WHERE
clauses.
Aggregate or apply selector functions to data
Use aggregate and selector functions to perform aggregate operations on your time series data.
Use Flux and SQL to query data
Leverage both the performance of SQL and the flexibility of Flux to query and process your time series data.
Cast values to different types
Use the CAST
function or double-colon ::
casting shorthand syntax to cast a value to a specific type.
SQL regular expression functions
Use regular expression functions to operate on data in SQL queries.