Member Junction
    Preparing search index...

    A CTE definition in the WITH clause.

    interface CTENode {
        Body: Fragment[];
        CanonicalName: string;
        Columns?: string[];
        Id: string;
        Name: string;
        OrderByStripped: boolean;
        Origin: CTEOrigin;
    }
    Index

    Properties

    Body: Fragment[]

    The CTE body as a sequence of fragments

    CanonicalName: string

    The canonical (unquoted, lowercased) name for comparison

    Columns?: string[]

    Optional column list

    Id: string

    Symbol-table-assigned unique identifier

    Name: string

    The CTE name as it should appear in rendered SQL (may be quoted)

    OrderByStripped: boolean

    Whether this CTE has a top-level ORDER BY that was stripped

    Origin: CTEOrigin

    Provenance: who created this CTE