ads

QUERY function

 



QUERY function

Syntax

QUERY(data, query, [headers])

  • data - The range of cells to perform the query on.

    • Each column of data can only hold boolean, numeric (including date/time types) or string values.

    • In case of mixed data types in a single column, the majority data type determines the data type of the column for query purposes. Minority data types are considered null values.

  • query - The query to perform, written in the Google Visualization API Query Language.

  • headers - [ OPTIONAL ] - The number of header rows at the top of data. If omitted or set to -1, the value is guessed based on the content of data.

Examples

Sample data

Select & where

Returns rows that match the specified condition using Select and Where clauses.

Group by

Aggregates Salary values across rows using Select and Group by clauses.

 

Pivot

Transforms distinct values in columns into new columns.

 

Order by

Aggregates Dept values across rows and sorts by the maximum value of Salary.

 

Headers

Specifies the number of header rows in the input range, which enables transformation of multi-header rows range input to be transformed to a single row header input.

Post a Comment

Previous Post Next Post