Subject SQL Standards
Author Michael Vilhelmsen
Just a short question.

Firebird can do this:

SELECT FIRST 250 ProductNumber, StockCount from DWIStock

In MS SQL the same is

SELECT TOP 250 ProductNumber, StockCount from DWIStock


Which is standard SQL ?
Firebird or MS SQL ?

Michael