0

たとえば、テーブルがあります。

Health condition    |   Description
-----------------------------------------------
OtherHealth         |   Other Health Care Needs
TraumaBrain         |   Traumatic Brain Injury
None                |   None

さて、最後のコラムを最後に追加したことを後悔しています。このテーブルには依存関係があるため、それらを切り捨てて再挿入することはできません。だから私は最後の行を最初に持ってくる方法を探しています。

4

1 に答える 1

0

これらの 2 つの列を並べ替えるには、次を使用します

alter table t rename column "Health condition" to c1;
alter table t rename column "Description" to c2;
update t set c1=c2, c2=c1;
alter table t rename column c1 to "Description";
alter table t rename column c2 to "Health condition";
于 2013-09-26T12:46:29.937 に答える