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