Member Junction
    Preparing search index...

    Result from limitClause() — SQL Server uses a prefix (TOP n) while PostgreSQL uses a suffix (LIMIT n OFFSET m).

    interface LimitClauseResult {
        prefix: string;
        suffix: string;
    }
    Index

    Properties

    Properties

    prefix: string

    SQL placed between SELECT and the column list (e.g., "TOP 10")

    suffix: string

    SQL placed after the ORDER BY / WHERE clause (e.g., "LIMIT 10 OFFSET 20")