SQL Select Limit

Wednesday, March 18, 2009

// mysql
select col from tbl limit 20;

// Oracle
select col from tbl where rownum<=20;

// Microsoft SQL
select top 20 col from tbl;

0 comments: