Registriert seit: 4. Dez 2012
Ort: Augsburg, Bayern, Süddeutschland
419 Beiträge
Delphi XE4 Ultimate
|
AW: if (not) exists
12. Jan 2013, 19:13
Hallo,
es muss lauten:
Code:
ALTER TABLE `Schema`.`Tabelle` DROP COLUMN `Spalte`
bzw.
Code:
ALTER TABLE `Schema`.`Tabelle` ADD COLUMN `neueSpalte` INTEGER AFTER `Spalte`
IF EXISTS setzt Du bei DROP (DATABASE / TABLE / VIEW etc) ein. Z.B.
Code:
DROP TABLE IF EXISTS `Tablename`
Gruß
Volker Zeller
|