Skip to content

SQLExpression🔗

Definition🔗

export interface SQLExpression {
    columns?: bigquery.QueryEditorFunctionExpression[];
    from?: string;
    // whereJsonTree?: _
    whereString?: string;
    groupBy?: bigquery.QueryEditorGroupByExpression[];
    orderBy?: bigquery.QueryEditorPropertyExpression;
    orderByDirection?: bigquery.OrderByDirection;
    limit?: number;
    offset?: number;
}

Methods🔗

No methods.

See also🔗