首頁  >  文章  >  資料庫  >  调整Oracle数据库中表字段的顺序

调整Oracle数据库中表字段的顺序

WBOY
WBOY原創
2016-06-07 17:31:34923瀏覽

第一步,从数据字典视图查询出表的id select object_id from all_objects where owner=

第一步,从数据字典视图查询出表的id

select object_id from all_objects where owner='SUNYARD' and object_name='TBL_WDC_INF';

第二步,通过id查出该表中所有字段的顺序

select obj#,col#,name from sys.col$ where obj#=89677;

第三步,,更新字段的顺序

update sys.col$ set col#=0 where obj#=89677 and;
update sys.col$ set col#=7 where obj#=89677 and;
update sys.col$ set col#=9 where obj#=89677 and;
update sys.col$ set col#=4 where obj#=89677 and;
update sys.col$ set col#=3 where obj#=89677 and;


update sys.col$ set col#=8 where obj#=89677 and;
update sys.col$ set col#=5 where obj#=89677 and;
update sys.col$ set col#=2 where obj#=89677 and;

update sys.col$ set col#=1 where obj#=89677 and;

注意:上述更新需要DBA权限

linux

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn