Thread Postgres ALTER TABLE? (4 answers)
Opened by Andreas at 2004-08-05 11:43

pq
 2004-08-05 12:29
#32536 #32536
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
also den typ eines feldes zu ändern, geht wohl nicht so leicht (aber das
scheint nichts mit postgres zu tun zu haben, das ist allgemein so), aber
du kannst ja folgendes tun:
alter table t add column new VARCHAR(40);
update t set new = old;
alter table t drop column old;
alter table t rename column new to old;
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Postgres ALTER TABLE?