精品丰满熟女一区二区三区_五月天亚洲欧美综合网_亚洲青青青在线观看_国产一区二区精选

  • <menu id="29e66"></menu>

    <bdo id="29e66"><mark id="29e66"><legend id="29e66"></legend></mark></bdo>

  • <pre id="29e66"><tt id="29e66"><rt id="29e66"></rt></tt></pre>

      <label id="29e66"></label><address id="29e66"><mark id="29e66"><strike id="29e66"></strike></mark></address>
      學(xué)習(xí)啦>學(xué)習(xí)英語(yǔ)>專(zhuān)業(yè)英語(yǔ)>計(jì)算機(jī)英語(yǔ)>

      數(shù)據(jù)庫(kù)中alter的用法

      時(shí)間: 長(zhǎng)思709 分享

        數(shù)據(jù)庫(kù)中alter的用法的用法你知道嗎?下面小編就跟你們?cè)敿?xì)介紹下數(shù)據(jù)庫(kù)中alter的用法的用法,希望對(duì)你們有用。

        數(shù)據(jù)庫(kù)中alter的用法的用法如下:

        To add a column to an existing table, the ALTER TABLE syntax is:

        ALTER TABLE table_name

        ADD column_name column-definition;

        For example:

        ALTER TABLE supplier

        ADD supplier_name varchar2(50);

        This will add a column called supplier_name to the supplier table.

        Syntax #2

        To add multiple columns to an existing table, the ALTER TABLE syntax is:

        ALTER TABLE table_name

        ADD ( column_1 column-definition,

        column_2 column-definition,

        ...

        column_n column_definition );

        For example:

        ALTER TABLE supplier

        ADD ( supplier_name varchar2(50),

        city varchar2(45) );

        This will add two columns (supplier_name and city) to the supplier table.

        Modifying column(s) in a table

        Syntax #1

        To modify a column in an existing table, the ALTER TABLE syntax is:

        ALTER TABLE table_name

        MODIFY column_name column_type;

        For example:

        ALTER TABLE supplier

        MODIFY supplier_name varchar2(100) not null;

        This will modify the column called supplier_name to be a data type of varchar2(100) and force the column to not allow null values.

        Syntax #2

        To modify multiple columns in an existing table, the ALTER TABLE syntax is:

        ALTER TABLE table_name

        MODIFY ( column_1 column_type,

        column_2 column_type,

        ...

        column_n column_type );

        For example:

        ALTER TABLE supplier

        MODIFY ( supplier_name varchar2(100) not null,

        city varchar2(75) );

        This will modify both the supplier_name and city columns.

        Drop column(s) in a table

        Syntax #1

        To drop a column in an existing table, the ALTER TABLE syntax is:

        ALTER TABLE table_name

        DROP COLUMN column_name;

        For example:

        ALTER TABLE supplier

        DROP COLUMN supplier_name;

        This will drop the column called supplier_name from the table called supplier.

        Rename column(s) in a table

        (NEW in Oracle 9i Release 2)

        Syntax #1

        Starting in Oracle 9i Release 2, you can now rename a column.

        To rename a column in an existing table, the ALTER TABLE syntax is:

        ALTER TABLE table_name

        RENAME COLUMN old_name to new_name;

        For example:

        ALTER TABLE supplier

        RENAME COLUMN supplier_name to sname;

        This will rename the column called supplier_name to sname.

      數(shù)據(jù)庫(kù)中alter的用法

      數(shù)據(jù)庫(kù)中alter的用法的用法你知道嗎?下面小編就跟你們?cè)敿?xì)介紹下數(shù)據(jù)庫(kù)中alter的用法的用法,希望對(duì)你們有用。 數(shù)據(jù)庫(kù)中alter的用法的用法如下: To add a column to an existing table, the ALTER TABLE syntax is: ALTER TABLE table
      推薦度:
      點(diǎn)擊下載文檔文檔為doc格式
      543128