我目前有一个包含varchar(10000)列的Postgres 8.4数据库。我想将其更改为varchar(255)并截断任何碰巧太长的数据。我怎么能这样做?
答案 0 :(得分:11)
像ALTER TABLE t ALTER COLUMN c TYPE VARCHAR(255) USING SUBSTR(c, 1, 255)
答案 1 :(得分:4)
1)使用子串方法更新列数据以截断它
update t set col = substring(col from 1 for 255)
2)然后改变表格列
alter table t alter column col type varchar(255)
此处的文档http://www.postgresql.org/docs/8.4/static/sql-altertable.html
答案 2 :(得分:0)
BEGIN;
UPDATE table SET column = CAST(column as varchar(255));
ALTER TABLE table ALTER COLUMN column TYPE varchar(255); --not sure on this line. my memory is a bit sketchy
COMMIT;