dresende / node-sql-query

NodeJS SQL query builder
122 stars 103 forks source link

Add support for SELECT TOP construct for mssql dialect for limit #41

Closed christiaanwesterbeek closed 9 years ago

christiaanwesterbeek commented 9 years ago

MSSQL is the only dialect supported by node-sql-query that constructs a limit as

SELECT TOP [n rows] columns
FROM tablename
ORDER BY key ASC

instead of

SELECT columns
FROM tablename
ORDER BY key ASC
LIMIT n

This commit adds support for mssql and the limit property.

christiaanwesterbeek commented 9 years ago

@dresende Easy merge waiting (tests were added and passing)

dresende commented 9 years ago

Thank you