It's easy to do pagination using mysql or postgresql by using the LIMIT x,y clause. However it is not supported by Oracle or MSSQL. Any insights on why?
I'm not asking for alternatives, I'am aware of them (BTW SQL-SERVER's TOP function doesn't provide the same functionality). I would like to know if there is any technical or licensing reason why the LIMIT x,y clause that it is very useful for web development (pagination) and has a very clean and simple syntax in MySQL and PostgreSQL has complex syntax, sometimes involving subqueries, in other RDBMSs.