Discover mysql alter table default, include the articles, news, trends, analysis and practical advice about mysql alter table default on alibabacloud.com
MySQL database ALTER command explanation, MySQL ALTER command explanation
MySQL is a Relational Database Management System. This so-called "Relational" can be understood as "tables". A Relational Database consists of one or more tables.
When we need
First, basic usage
1. Add Column
ALTER TABLE Tbl_name add col_name type
For example, add a column of weight to the pet table,
Mysql>alter table Pet Add weight int;
2. Delete Column
ALTER TABLE Tbl_name drop col_
ALTER TABLE allows you to modify the structure of an existing table. For example, you can add or delete columns, create or eliminate indexes, change the type of existing columns, or rename columns or the table itself. You can also change the
The following articles mainly describe the actual operations of modifying the alter TABLE structure in MySQL. If you are interested in the actual operations of modifying the alter TABLE structure in MySQL, you can browse the following articles, the
MySQL is a relational database (RelationalDatabaseManagementSystem ). This article focuses on the alert commands of the mysql Database. This article is very detailed and has reference value. if you are interested, join us and learn that MySQL is a
MySQL study Note 5: modifying the table (altertable) bitsCN.com we will inevitably consider the week before creating the table. Therefore, the alter table statement is required to modify the table later.
Modify table name
Mysql> alter table
Mysql changes the table structure: add, delete, modify, and adjust the field order to add a field: altertable 'user _ movement_log 'AddcolumnGatewayIdintnotnulldefault0AFTER 'regionid' (after which field is added) Delete the field: altertable 'user _
When creating a table, we will inevitably consider the disadvantages of weeks. Therefore, we need to use altertable to modify the TABLE statement to modify the table later. Next we will introduce it in detail. For more information, see
When creating
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.