Tuesday, August 27, 2013

How do you select top N records in PostgreSQL?

SELECT *
FROM <TableName>
LIMIT N;

No comments :