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

좋은 웹페이지 즐겨찾기