Oracle-怎么在表的特定位置增加列
create table tmp as select ID,UserName,RealName,Sex,Tel,Addr from tabName;
drop table tabName;
rename tmp to tabName;
add Constraints,index,comments……
生活其实也很简单,喜欢的就去争取、得到的就珍惜、失去的就忘记。
create table tmp as select ID,UserName,RealName,Sex,Tel,Addr from tabName;
drop table tabName;
rename tmp to tabName;
add Constraints,index,comments……