タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

SQLに関するt-bucchiのブックマーク (1)

  • Chapter 9. SQL Syntax

    ALTER TABLE <tablename> ADD [COLUMN] <columnname> Datatype [(columnSize[,precision])] [{DEFAULT <defaultValue> | GENERATED BY DEFAULT AS IDENTITY (START WITH <n>[, INCREMENT BY <m>])}] | [[NOT] NULL] [IDENTITY] [PRIMARY KEY] [BEFORE <existingcolumn>];Adds the column to the end of the column list. The optional BEFORE <existingcolumn> can be used to specify the name of an existing column so that the

    t-bucchi
    t-bucchi 2008/05/09
    HSQLDBのSQLコマンド一覧
  • 1