[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]