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

foobar
 2004-08-05 12:36
#32537 #32537
User since
2003-08-04
69 Artikel
BenutzerIn
[default_avatar]
[quote=pq,05.08.2004, 10:29]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;
[/quote]
In Mysql ist das ohne weiteres Möglich:
[sql]ALTER TABLE tabelle
MODIFY spalte varchar(40)
[/sql]
The three chief virtues of a programmer are: Laziness, Impatience and Hubris
[Larry Wall]

View full thread Postgres ALTER TABLE?