Oracle查詢070430

來源:互聯網
上載者:User
問題是:把職工資訊表中的職工姓名的姓改為另一個.如:把張某改為王某,只改姓而不改名字:
update 表名 set 欄位名 = '王' || substr(欄位名,2,length(欄位名)) where 欄位名 like '張%';
表名是recv,裡面有欄位no讓no欄位為遞增:
create sequence
start with 1
increment by 1;
查詢所有使用者表及其相應欄位的類型:
select *From user_tab_columns;
Oracle使用SQL查詢表欄位列的備忘資訊:
select comments  
from user_col_comments  
where table_name = 'dept'
and column_name = 'DEPTNO';
用SQL語句擷取Oracle指定表的表結構:1、SELECT * FROM ALL_TAB_COLUMNS where owner='USE1' and table_name ='B';  2、desc 表名 3、SELECT column_name AS FIELDNAME,data_type AS TYPE,data_length AS SIZE,nullable AS ISNULL FROM user_tab_columns where table_name = 'tablename'  
Oracel中查詢使用者表中某表某列的欄位類型:
select *from user_tab_columns where table_name='dept' and column_name='DEPTNO';

相關文章

聯繫我們

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