You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQL Server does not support LIMIT and OFFSET, but it does support TOP at the start of a SELECT statement, e.g. SELECT TOP 500 * FROM Table
I looked at the limit fn that implements LIMIT with assoc-op, but I'm not sure how to extend SQLingvo to support the TOP statement at the start of the query?
The text was updated successfully, but these errors were encountered:
SQL Server does not support LIMIT and OFFSET, but it does support TOP at the start of a SELECT statement, e.g.
SELECT TOP 500 * FROM Table
I looked at the limit fn that implements LIMIT with
assoc-op
, but I'm not sure how to extend SQLingvo to support the TOP statement at the start of the query?The text was updated successfully, but these errors were encountered: