Ответить на комментарий

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.

Ответить

Содержание этого поля является приватным и не предназначено к показу.
  • Доступны HTML теги: <a> <b> <p> <dd> <dl> <dt> <i> <li> <ol> <ul> <tt> <pre> <code> <img> <em> <blockquote> <strong>
  • Строки и параграфы переносятся автоматически.

Подробнее о форматировании

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.