Module standard_sql (3.11.4)

API documentation forbigquery.standard_sql module.

Classes

StandardSqlDataType

StandardSqlDataType(type_kind:typing.Optional[google.cloud.bigquery.enums.StandardSqlTypeNames]=StandardSqlTypeNames.TYPE_KIND_UNSPECIFIED,array_element_type:typing.Optional[google.cloud.bigquery.standard_sql.StandardSqlDataType]=None,struct_type:typing.Optional[google.cloud.bigquery.standard_sql.StandardSqlStructType]=None,)

The type of a variable, e.g., a function argument.

See:https://cloud.google.com/bigquery/docs/reference/rest/v2/StandardSqlDataType

Examples:

INT64: {type_kind="INT64"}ARRAY: {type_kind="ARRAY", array_element_type="STRING"}STRUCT<x STRING, y ARRAY>: {    type_kind="STRUCT",    struct_type={        fields=[            {name="x", type={type_kind="STRING"}},            {                name="y",                type={type_kind="ARRAY", array_element_type="DATE"}            }        ]    }}

StandardSqlField

StandardSqlField(name:typing.Optional[str]=None,type:typing.Optional[google.cloud.bigquery.standard_sql.StandardSqlDataType]=None,)

StandardSqlStructType

StandardSqlStructType(fields:typing.Optional[typing.Iterable[google.cloud.bigquery.standard_sql.StandardSqlField]]=None,)

StandardSqlTableType

StandardSqlTableType(columns:typing.Iterable[google.cloud.bigquery.standard_sql.StandardSqlField],)

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026-01-09 UTC.