Auf Kommentar antworten

ALTER TABLE - modify tables

Syntax

Description

    With ALTER TABLE you can add, remove or modify table columns. depending on the database management system, the table should not be empty.

    Example:

    ALTER TABLE tkunden ADD COLUMN new_number INTEGER NOT NULL;
    

    Adds the new INTEGER column new_number to existing table tkunden and sets a NOT NULL contraint.

    Example:

    ALTER TABLE TABLE tkunden DROP COLUMN new_number;
    

    Drops the column new_number from the table tkunden.

Antworten

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Zulässige HTML-Tags: <a> <b> <p> <dd> <dl> <dt> <i> <li> <ol> <ul> <tt> <pre> <code> <img> <em> <blockquote> <strong>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

CAPTCHA
Diese Frage dient der Klärung, ob Sie ein menschlicher Besucher sind, und verhinderung von automatischer Einstellung von Spam
Image CAPTCHA
Enter the characters shown in the image.