Oracle遇到的應用實際教程

來源:互聯網
上載者:User

(1)得到表中所有的欄位

      select   *   from   user_tab_columns   where   table_name='表名'

(2)複製表

      create table user_temp as select * from user

(3)關聯排序:當一個表的排序欄位要自訂排序,而這個自訂的順序在另一張表時

      select name from t_user order by (select min(order) from order where order.name=name)

(4)刪除dataid重複的資料

      delete table1 where rowid not in (select max(rowid) from  table1 group by (data_id))

(5)資料恢複

      <a>首先用sys登陸查詢  select * from sys.smon_scn_time;
      找到 TIME_DP列想恢複的時間 的 SCN_BAS列 【如1705917】
      <b>查詢表
      select * from 表名 AS OF SCN 1705917;
      即可查詢出這個時間 表的資料情況

(6)decode的使用

      decode (zt,'0','未審批','已審批')

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.