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

    Type Alias Limit

    Represent a LIMIT clause that restricts the number of returned rows.

    type Limit = {
        percent?: boolean;
        this: Expression;
    }
    Index

    Properties

    Properties

    percent?: boolean

    Whether PERCENT modifier is present (DuckDB: LIMIT 10 PERCENT)

    The limit count expression.