Oracle 에서 10 조 를 취하 여 20 조 에 기록 하고 효율 이 가장 높 은 SQL 문 구 는 어떻게 씁 니까?
2061 단어 자바
oracle
select * from table where rownum<20
minus
select * from table where rownum<10
// (556436 , )
select * from (select rownum r,a.* from blog a where rownum<=20) where r>=10;
mysql> SELECT * FROM table LIMIT 5,10; // 6-15
// , -1:
mysql> SELECT * FROM table LIMIT 95,-1; // 96-last.
// , :
mysql> SELECT * FROM table LIMIT 5; // 5
// ,LIMIT n LIMIT 0,n
mysql limit [ ], limit , , , , mysql limit ,
http://www.phpobject.net/blog/read.php?119
MYSQL 。 limit。mysql limit , ,limit 。
10
select * from yanxue8_visit limit 10000,10
select * from yanxue8_visit limit 0,10
。
limit , mysql , 。 limit , 。 :http://www.zhenhua.org/article.asp?id=200
limit, offset id limit size 。 , limit。 。( win2033+p4 (3GHZ) +4G mysql 5.0.19)
1、offset 。
select * from yanxue8_visit limit 10,10
, 0.0004-0.0005
Select * From yanxue8_visit Where vid >=(
Select vid From yanxue8_visit Order By vid limit 10,1
) limit 10
, 0.0005-0.0006 , 0.0006
: offset , limit 。 。
2、offset 。
select * from yanxue8_visit limit 10000,10
, 0.0187
Select * From yanxue8_visit Where vid >=(
Select vid From yanxue8_visit Order By vid limit 10000,1
) limit 10
, 0.0061 , 1/3。 offset , 。
limit , mysql
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.