Thread Postgres ALTER TABLE?
(4 answers)
Opened by Andreas at 2004-08-05 11:43
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: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |