MySQL column in the additions and deletions to change

Source: Internet
Author: User

Add columns:Alter Tabletable_nameAddNamevarchar( -);Alter Tabletable_nameAddNamevarchar( -) after ID;Alter Tabletable_nameAddNamevarchar( -) First; Modify the column name:Alter TableTABLE_NAME Change name Namevarchar(Ten); #change可改名字与字段类型mysql> Alter TableA change UID UIDint; Query OK,0Rows Affected (0.04sec) Records:0Duplicates:0Warnings:0Alter TableTABLE_NAME Modify Nameint; #modify只改字段类型mysql> descA;+-------+---------+------+-----+---------+-------+|Field|Type| Null | Key | Default |Extra|+-------+---------+------+-----+---------+-------+|Namea| Char(1)|YES|     | NULL    |       ||Id| int( One)|YES|     | NULL    |       ||Uid| int( One)|YES|     | NULL    |       |+-------+---------+------+-----+---------+-------+3Rowsinch Set(0.01sec) MySQL>MySQL>MySQL> Alter TableA modify UIDvarchar(1); Query OK,0Rows Affected (0.07sec) Records:0Duplicates:0Warnings:0MySQL> descA;+-------+------------+------+-----+---------+-------+|Field|Type| Null | Key | Default |Extra|+-------+------------+------+-----+---------+-------+|Namea| Char(1)|YES|     | NULL    |       ||Id| int( One)|YES|     | NULL    |       ||Uid| varchar(1)|YES|     | NULL    |       |+-------+------------+------+-----+---------+-------+3Rowsinch Set(0.01sec) MySQL>To delete a column:Alter Tabletable_nameDropcolumn_name, #手册help modify;

MySQL column in the additions and deletions to change

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.