A quick Question. Suppose I have the following two queries:
SELECT TOP 2 * FROM Persons;
and
SELECT * FROM Persons limit 2;
limit works on MySQL and PostgreSQL, top works on SQL Server, rownum works on Oracle.
limit
top
rownum