Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- xargs
- resource
- Windows
- VirtualBox
- JavaScript
- 줄바꿈 문자
- Eclipse
- profile
- web.xml
- tomcat
- lsof
- find
- 단축키
- plugin
- port
- ssh
- grep
- GIT
- Quartz
- vscode
- Windows 10
- import
- netsh
- context
- Mac
- maVen
- Source
- 네트워크
- bash
- IntelliJ
Archives
- Today
- Total
develog
ROWNUM, TOP, LIMIT 본문
--Oracle
SELECT *
FROM AATEST
WHERE ROWNUM <= 3
;
--MS-SQL Server
SELECT TOP 3 *
FROM AATEST
;
--MySQL
SELECT *
FROM AATEST
LIMIT 3
;
'DB > DB common' 카테고리의 다른 글
[DB] DB version (0) | 2017.04.25 |
---|---|
[DB] DDL, DML, DCL (0) | 2017.03.27 |
[jdbc] jdbc, driver, connection url (0) | 2016.06.02 |
Configuring Connection Pooling in Tomcat (0) | 2013.03.07 |
rownum, top, limit (0) | 2013.03.06 |