Module standard_sql (3.12.0)

API documentation for bigquery.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],
)