Language/NoSQL&JDBC

DB별 개수 제한 검색

아르비스 2012. 11. 13. 08:44

DB 사용하다 보니 필요해서 ...


// mysql
select col from tbl limit 20;

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

// Microsoft SQL
select top 20 col from tbl;