Oracle rownum和rowid__Oracle

來源:互聯網
上載者:User

Rownum:根據sql查詢出的結果集為每行分配一個邏輯編號,能夠動態變化,根據sql每次的查詢變化進行重新的編號,每次都是從1開始排號;

Rowid:在資料產生時就會有一個唯一的標示,這個標示類似於物理結構上的物理記錄,是不會隨著sql的查詢發生變化的。

例如:selectrowid,rownum,t.order_id from tab_order_s t where t.contract_type=41;

得出結果:


 對於rowid的標示不容置疑,關於rownum應用需要注意幾點:

      Conditions testing for ROWNUMvalues greater than a positive integer are always false.

Forexample, this query returns no rows: SELECT * FROM employees WHERE ROWNUM >1;

Thefirst row fetched is assigned a ROWNUM of 1 and makes the condition false. The

secondrow to be fetched is now the first row and is also assigned a ROWNUM of 1 and

makesthe condition false. All rows subsequently fail to satisfy the condition, so no

rows arereturned.

大體意思:Rownum在每次產生的時候是從1開始排序的。

例如:

  Select * from tab_order_s twhere rownum>2; à錯誤

  Select * from tab_order_s twhere rownum<=10; à正確

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.