Related to "query"
Query data in InfluxDB Cloud
Learn to query data stored in InfluxDB using SQL, InfluxQL, and Flux using tools like the InfluxDB user interface and the ‘influx’ command line interface.
influx query
The influx query
command executes a literal Flux query provided as a string or a literal Flux query contained in a file by specifying the file prefixed with an ‘@’ sign.
Query data with SQL
Learn to query data stored in InfluxDB Cloud using SQL.
Explore your schema with SQL
When working with InfluxDB’s implementation of SQL, a bucket is equivalent to a databases, a measurements is structured as a table, and time, fields, and tags are structured as columns.
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.