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 |
31 |
Tags
- plugin
- tomcat
- lsof
- grep
- import
- resource
- ssh
- 줄바꿈 문자
- bash
- web.xml
- Quartz
- Windows 10
- port
- context
- xargs
- 네트워크
- Eclipse
- JavaScript
- netsh
- find
- 단축키
- GIT
- IntelliJ
- VirtualBox
- Windows
- Source
- Mac
- vscode
- maVen
- profile
Archives
- Today
- Total
develog
rownum, top, limit 본문
--Oracle
SELECT *
FROM TABLE_NM
WHERE ROWNUM <= 10
--MS SQL
SELECT TOP 10 *
FROM TABLE_NM
--MySQL
SELECT *
FROM TABLE_NM
LIMIT 1, 10
'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 |
ROWNUM, TOP, LIMIT (0) | 2015.10.22 |
Configuring Connection Pooling in Tomcat (0) | 2013.03.07 |