Igal
Explore posts from serversPagination
Hey 👋
As @koskimas pointed out. One of Kysely's core design principles is What You See Is What You Get. What you invoke, is exactly what you should get in the compiled query.
For MSSQL, you must, according to spec, use a combination of
order by
, offset
and fetch
. https://learn.microsoft.com/en-us/sql/t-sql/queries/select-order-by-clause-transact-sql?view=sql-server-ver16#syntax7 replies