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
- GIT
- JavaScript
- Windows
- plugin
- tomcat
- context
- VirtualBox
- grep
- find
- Quartz
- lsof
- ssh
- netsh
- resource
- xargs
- bash
- import
- maVen
- 네트워크
- Source
- profile
- 단축키
- IntelliJ
- port
- Windows 10
- web.xml
- 줄바꿈 문자
- Mac
- Eclipse
- vscode
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 |
Comments