1. 程式人生 > >postgresql 欄位sql語句 更改表名

postgresql 欄位sql語句 更改表名

1.更改表名 

alter table 表名 rename to 新表名

2.更改欄位名

alter table 表名 rename 欄位名 to 新欄位名

3,更改欄位型別

如:ID 欄位 原型別為 character varying(50) 新型別為integer

其中,ID中原有資料為1,2,3等數字

用如下語句更改

 alter table dbo.titemtype alter column id type integer using to_number(id,'9');