Polyglot SQL API Documentation - v0.1.0
    Preparing search index...

    Type Alias Column

    Represent a column reference, optionally qualified by a table name.

    Renders as name when unqualified, or table.name when qualified. Use [Expression::column()] or [Expression::qualified_column()] for convenient construction.

    type Column = {
        join_mark: boolean;
        name: Identifier;
        table: Identifier | null;
        trailing_comments: string[];
    }
    Index

    Properties

    join_mark: boolean

    Oracle-style join marker (+) for outer joins

    The column name.

    table: Identifier | null

    Optional table qualifier (e.g. t in t.col).

    trailing_comments: string[]

    Trailing comments that appeared after this column reference