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

    Type Alias OrderBy

    Represent an ORDER BY clause containing one or more sort specifications.

    type OrderBy = {
        comments?: string[];
        expressions: Ordered[];
        siblings?: boolean;
    }
    Index

    Properties

    comments?: string[]

    Leading comments that appeared before the ORDER BY keyword

    expressions: Ordered[]

    The sort specifications, each with direction and null ordering.

    siblings?: boolean

    Whether this is ORDER SIBLINGS BY (Oracle hierarchical queries)