在Oracle 12c推出之后,其中一个新特性就是分页语句。 Easy Top-N and pagination queries ,更易用的Top-N和页码查 询提供了类似MySQL中limit的语法,Row Limiting Clause 注意:该功能是Oracle12c的新特性,并不是ArcGIS的新特性。 语法介绍 row_limiting_
在Oracle 12c推出之后,其中一个新特性就是分页语句。
Easy Top-N and pagination queries ,更易用的Top-N和页码查
询提供了类似MySQL中limit的语法,Row Limiting Clause
注意:该功能是Oracle12c的新特性,并不是ArcGIS的新特性。
语法介绍
<span>row_limiting_clause</span>
The <span>row_limiting_clause</span>
allows you to limit the rows returned by the query. You can specify an offset, and number of rows or percentage of rows to return. You can use this clause to implement top-N reporting. For consistent results, specify the <span>order_by_clause</span>
to ensure a deterministic sort order.
OFFSET
Use this clause to specify the number of rows to skip before row limiting begins. <span>offset</span>
must be a number. If you specify a negative number, then <span>offset</span>
is treated as 0. If you specify NULL, or a number greater than or equal to the number of rows returned by the query, then 0 rows are returned. If <span>offset</span>
includes a fraction, then the fractional portion is truncated. If you do not specify this clause, then <span>offset</span>
is 0 and row limiting begins with the first row.
ROW | ROWS These keywords can be used interchangeably and are provided for semantic clarity.
FETCH
Use this clause to specify the number of rows or percentage of rows to return. If you do not specify this clause, then all rows are returned, beginning at row <span>offset</span>
+ 1.
FIRST | NEXT These keywords can be used interchangeably and are provided for semantic clarity.
<span>rowcount</span> | <span>percent</span> PERCENT Use <span>rowcount</span>
to specify the number of rows to return. <span>rowcount</span>
must be a number. If you specify a negative number, then <span>rowcount</span>
is treated as 0. If <span>rowcount</span>
is greater than the number of rows available beginning at row <span>offset</span>
+ 1, then all available rows are returned. If <span>rowcount</span>
includes a fraction, then the fractional portion is truncated. If <span>rowcount</span>
is NULL, then 0 rows are returned.
Use <span>percent</span>
PERCENT
to specify the percentage of the total number of selected rows to return. <span>percent</span>
must be a number. If you specify a negative number, then <span>percent</span>
is treated as 0. If <span>percent</span>
is NULL, then 0 rows are returned.
If you do not specify <span>rowcount</span>
or <span>percent</span>
PERCENT
, then 1 row is returned.
ROW | ROWS These keywords can be used interchangeably and are provided for semantic clarity.
ONLY | WITH TIES Specify ONLY
to return exactly the specified number of rows or percentage of rows.
Specify WITH
TIES
to return additional rows with the same sort key as the last row fetched. If you specify WITH
TIES
, then you must specify the<span>order_by_clause</span>
. If you do not specify the <span>order_by_clause</span>
, then no additional rows will be returned.
当然,大家最喜欢看的就是实际的例子,总结上面就是,在Oracle12c
环境下,提供了更加方便的分页语句,而不再使用Rownum对象了。
测试环境:
ArcSDE10.2.1、Oracle12.1.0.1
sde@PDBORCL> select count(*) from point; COUNT(*) ---------- 231774 sde@PDBORCL> select count(*) from poly; COUNT(*) ---------- 13
----------------------------------------------------------------------------------
Blog: http://blog.csdn.net/linghe301
----------------------------------------------------------------------------------
1:获得前N条记录的语句
语法: fetch first N rows only;
sde@PDBORCL> set autotrace on sde@PDBORCL> select a.objectid,a.poi_name from poly b,point a where sde.st_within(a.shape,b.shape)=1 order by a.objectid fetch first 10 rows only; OBJECTID POI_NAME ---------- ---------------------------------------------------------------------- 1326 96699994 1790 96700095 6511 96700093 8761 96698253 9650 96698338 10186 96699086 10597 96700092 12400 96698659 12443 96700465 14594 96699995 已选择10行。 执行计划 ---------------------------------------------------------- Plan hash value: 3842462730 ------------------------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | ------------------------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 76 | 55 (0)| 00:00:01 | |* 1 | VIEW | | 1 | 76 | 55 (0)| 00:00:01 | |* 2 | WINDOW SORT PUSHED RANK | | 1 | 417 | 55 (0)| 00:00:01 | | 3 | NESTED LOOPS | | 1 | 417 | 55 (0)| 00:00:01 | | 4 | TABLE ACCESS FULL | POLY | 13 | 2964 | 3 (0)| 00:00:01 | | 5 | TABLE ACCESS BY INDEX ROWID | POINT | 1 | 189 | 55 (0)| 00:00:01 | |* 6 | DOMAIN INDEX (Sel: .0000043)| A6_IX1 | | | 4 (0)| 00:00:01 | ------------------------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 1 - filter("from$_subquery$_003"."rowlimit_$$_rownumber"通过SQL的执行计划可以看出,系统还是通过Rownum来进行分页<p><span>的,是否我可以理解Oracle封装了一下,做了个二次开发呢?</span></p><p><span><br></span></p><p></p><p><strong><span>----------------------------------------------------------------------------------</span></strong></p><p></p><p><span><span><br></span></span></p><p><span><span>Blog: http://blog.csdn.net/linghe301</span></span></p><p><strong><span>----------------------------------------------------------------------------------</span></strong></p><br><p><span>2:获得第N条开始后的M条的语句</span></p><p><span>语法:offset N rows fetch next M rows only;</span></p><pre class="brush:php;toolbar:false">sde@PDBORCL> select a.objectid from poly b,point a where sde.st_within(a.shape,b.shape)=1 order by a.objectid offset 11 rows fetch next 10 rows only; OBJECTID ---------- 17833 18358 18710 19544 19719 20030 23028 24001 25139 25257 已选择10行。 执行计划 ---------------------------------------------------------- Plan hash value: 3842462730 ------------------------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | ------------------------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 39 | 55 (0)| 00:00:01 | |* 1 | VIEW | | 1 | 39 | 55 (0)| 00:00:01 | |* 2 | WINDOW SORT PUSHED RANK | | 1 | 417 | 55 (0)| 00:00:01 | | 3 | NESTED LOOPS | | 1 | 417 | 55 (0)| 00:00:01 | | 4 | TABLE ACCESS FULL | POLY | 13 | 2964 | 3 (0)| 00:00:01 | | 5 | TABLE ACCESS BY INDEX ROWID | POINT | 1 | 189 | 55 (0)| 00:00:01 | |* 6 | DOMAIN INDEX (Sel: .0000043)| A6_IX1 | | | 4 (0)| 00:00:01 | ------------------------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 1 - filter("from$_subquery$_003"."rowlimit_$$_rownumber"=0) THEN 11 ELSE 0 END +10 AND "from$_subquery$_003"."rowlimit_$$_rownumber">11) 2 - filter(ROW_NUMBER() OVER ( ORDER BY "A"."OBJECTID")=0) THEN 11 ELSE 0 END +10) 6 - access("SDE"."ST_WITHIN"("A"."SHAPE","B"."SHAPE")=1) 统计信息 ---------------------------------------------------------- 647 recursive calls 0 db block gets 2481 consistent gets 0 physical reads 0 redo size 457 bytes sent via SQL*Net to client 359 bytes received via SQL*Net from client 2 SQL*Net roundtrips to/from client 1 sorts (memory) 0 sorts (disk) 10 rows processed关于Next的用法分为两步
第一步:先把过滤第1到第N-1的数据
第二步:然后再获得第N到M的数据
----------------------------------------------------------------------------------
Blog: http://blog.csdn.net/linghe301
----------------------------------------------------------------------------------
3:获得前百分比N的语句
语法: fetch first N percent rows only;
sde@PDBORCL> select a.objectid from poly b,point a where sde.st_within(a.shape,b.shape)=1 order by a.objectid fetch first 10 percent rows only; OBJECTID ---------- 1326 1790 6511 8761 9650 10186 10597 12400 12443 14594 15163 17833 18358 18710 19544 19719 已选择16行。 执行计划 ---------------------------------------------------------- Plan hash value: 2419008321 ------------------------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | ------------------------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 52 | 55 (0)| 00:00:01 | |* 1 | VIEW | | 1 | 52 | 55 (0)| 00:00:01 | | 2 | WINDOW SORT | | 1 | 417 | 55 (0)| 00:00:01 | | 3 | NESTED LOOPS | | 1 | 417 | 55 (0)| 00:00:01 | | 4 | TABLE ACCESS FULL | POLY | 13 | 2964 | 3 (0)| 00:00:01 | | 5 | TABLE ACCESS BY INDEX ROWID | POINT | 1 | 189 | 55 (0)| 00:00:01 | |* 6 | DOMAIN INDEX (Sel: .0000043)| A6_IX1 | | | 4 (0)| 00:00:01 | ------------------------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 1 - filter("from$_subquery$_003"."rowlimit_$$_rownumber"<br><p><span>从这些语句可以看到,原来使用比较麻烦的分页SQL写法,现在变得</span></p><p><span>比较简单和方便了。</span></p><p><span><br></span></p><p><span>目前来说,我在ArcGIS10.2.1 for Server进行Rest测试,还不支持该</span></p><p><span>方法,希望Esri能够尽快改进吧。</span></p><p></p><p><strong><span>----------------------------------------------------------------------------------</span></strong></p><p></p><p><span><span><br></span></span></p><p><span><span>Blog: http://blog.csdn.net/linghe301</span></span></p><p><strong><span>----------------------------------------------------------------------------------</span></strong></p><br><p><span>另外需要说明一个问题。</span></p><p><span>很多情况下都会出现这种现象,比如在一个班级里面的数据成绩,从</span></p><p><span>最高排序有100、99、97、97、94等</span></p><p><span>那么,第一名就是100,第二名就是99,第三名应该是并列两个97,</span></p><p><span>那么在上面的语句中我们看到有一个ONLY关键字。</span></p><p><span><br></span></p><p><span>如果使用ONLY关键字,那么如果用户需要获得排序后的前三名,那么</span></p><p><span>只有100、99、97,显然这个不符合实际情况,所以用户应该使用</span></p><p><span>WITH TIES关键字,这样虽然获得前三名,得到的结果是真实的四个</span></p><p><span>数据。</span></p><pre class="brush:php;toolbar:false">sde@PDBORCL> select objectid,num from aaa; OBJECTID NUM ---------- ---------- 1 1 2 2 3 3 4 3 5 3 6 4 7 4 8 5 已选择8行。 sde@PDBORCL> sde@PDBORCL> select objectid,num from aaa order by num fetch first 3 rows only; OBJECTID NUM ---------- ---------- 1 1 2 2 3 3 sde@PDBORCL> select objectid,num from aaa order by num fetch first 3 rows with ties; OBJECTID NUM ---------- ---------- 1 1 2 2 3 3 4 3 5 3
----------------------------------------------------------------------------------
Blog: http://blog.csdn.net/linghe301
----------------------------------------------------------------------------------
PS:该功能目前可以在ArcGIS Desktop中使用,但是不能再
REST中使用。

mysqlviewshavelimitations : 1) 그들은 upportallsqloperations, datamanipulation throughviewswithjoinsorbqueries를 제한하지 않습니다

적절한 usermanagementInmysqliscrucialforenhancingsecurityandensuringfefficientDatabaseOperation.1) USECREATEUSERTOWDDUSERS,@'localHost'or@'%'.

mysqldoes notimposeahardlimitontriggers, butpracticalfactorsdeteirefectiveuse : 1) ServerConfigurationimpactStriggerManagement; 2) 복잡한 트리거 스케일 스케일 사이드로드; 3) argertableSlowtriggerTriggerPerformance; 4) High ConconcercencyCancaUspriggerContention; 5) m

예, It 'safetostoreBlobdatainmysql, butconsidertheStefactors : 1) StoragesPace : BlobScanconSumeSignificantspace, 잠재적으로 증가하는 CostsandSlownperformance

PHP 웹 인터페이스를 통해 MySQL 사용자를 추가하면 MySQLI 확장 기능을 사용할 수 있습니다. 단계는 다음과 같습니다. 1. MySQL 데이터베이스에 연결하고 MySQLI 확장자를 사용하십시오. 2. 사용자를 생성하고 CreateUser 문을 사용하고 Password () 함수를 사용하여 암호를 암호화하십시오. 3. SQL 주입 방지 및 MySQLI_REAL_ESCAPE_STRING () 함수를 사용하여 사용자 입력을 처리하십시오. 4. 새 사용자에게 권한을 할당하고 보조금 명세서를 사용하십시오.

mysql'sblobissuilableforstoringbinarydatawithinareldatabase, whilenosqloptionslikemongodb, redis, and cassandraofferflexible, scalablesolutionsforunstuctureddata.blobissimplerbutcanslowwownperformance를 사용하는 것들보업 betterscal randaysand

TOADDAUSERINMYSQL, 사용 : CreateUser'UserName '@'host'IdentifiedBy'Password '; 여기서'showTodoitseciRely : 1) ChoosetheHostCareLyTocon trolaccess.2) setResourcelimitswithOptionslikemax_queries_per_hour.3) Usestrong, iriquepasswords.4) enforcessl/tlsconnectionswith

toavoidcommonmistakeswithstringdatatypesinmysql, stroundStringTypenuances, chooseTherightType, andManageEncodingAndCollationSettingSefectively.1) usecharforfixed-lengthstrings, varcharvariable-length, andtext/blobforlargerdata.2) setcarcatter


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

SublimeText3 Linux 새 버전
SublimeText3 Linux 최신 버전

SecList
SecLists는 최고의 보안 테스터의 동반자입니다. 보안 평가 시 자주 사용되는 다양한 유형의 목록을 한 곳에 모아 놓은 것입니다. SecLists는 보안 테스터에게 필요할 수 있는 모든 목록을 편리하게 제공하여 보안 테스트를 더욱 효율적이고 생산적으로 만드는 데 도움이 됩니다. 목록 유형에는 사용자 이름, 비밀번호, URL, 퍼징 페이로드, 민감한 데이터 패턴, 웹 셸 등이 포함됩니다. 테스터는 이 저장소를 새로운 테스트 시스템으로 간단히 가져올 수 있으며 필요한 모든 유형의 목록에 액세스할 수 있습니다.

ZendStudio 13.5.1 맥
강력한 PHP 통합 개발 환경

DVWA
DVWA(Damn Vulnerable Web App)는 매우 취약한 PHP/MySQL 웹 애플리케이션입니다. 주요 목표는 보안 전문가가 법적 환경에서 자신의 기술과 도구를 테스트하고, 웹 개발자가 웹 응용 프로그램 보안 프로세스를 더 잘 이해할 수 있도록 돕고, 교사/학생이 교실 환경 웹 응용 프로그램에서 가르치고 배울 수 있도록 돕는 것입니다. 보안. DVWA의 목표는 다양한 난이도의 간단하고 간단한 인터페이스를 통해 가장 일반적인 웹 취약점 중 일부를 연습하는 것입니다. 이 소프트웨어는

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기