Microsoft SQL Server
SELECT TOP 10 column FROM table
PostgreSQL and MySQL
SELECT column FROM table
LIMIT 10
Oracle
SELECT column FROM table
WHERE ROWNUM <= 10
Sybase
SET rowcount 10
SELECT column FROM table
Firebird
SELECT FIRST 10 column
FROM table
'개발관련 > 데이터베이스' 카테고리의 다른 글
Length specified in network packet payload did not match number of bytes read; (0) | 2010.10.28 |
---|---|
MSSQL 과 Oracle의 변수 타입 차이 (0) | 2008.03.05 |
SQL문 (0) | 2007.10.25 |
데이터베이스 기초 이론 (0) | 2007.10.06 |