Hi,
ich habe in einer postgres datenbank eine tabelle test mit dem feld wort, das den datentyp varchar hat.
vielleicht hilft Dir das:
ALTER TABLE - Modifies table properties
ALTER TABLE table [ * ]
ADD [ COLUMN ] column type
ALTER TABLE table [ * ]
ALTER [ COLUMN ] column { SET DEFAULT value | DROP DEFAULT }
ALTER TABLE table [ * ]
RENAME [ COLUMN ] column TO newcolumn
ALTER TABLE table
RENAME TO newtable
ALTER TABLE table
ADD table constraint definition
table -> The name of an existing table to alter.
column -> Name of a new or existing column.
type -> Type of the new column.
newcolumn -> New name for an existing column.
newtable -> New name for the table.
also in Deinem Falle:
ALTER TABLE tabellenname ALTER COLUMN wort {SET DEFAULT int4};
danke für hilfe!
bitte
hoh
ROmy
DIE ROMY AUS L. AN DER P. SAGT DANKE UND AUF WIEDERSEHEN
->Alles ist gut wenn es aus Schokolade ist