This article uses an example to describe how to add, delete, and modify columns in a MySQL database. Share with you for your reference, the details are as follows: Create a new table user_info: CREATE TABLE user_info( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, username CHAR(20) NOT NULL DEFAULT '', gender TINYINT UNSIGNED NOT NULL DEFAULT 0, weight TINYINT UNSIGNED NOT NULL DEFAULT 0 )ENGINE=MyISAM DEFAULT CHARSET=utf8; The new column is the last column of the table by default. Syntax: alter table table name add column name column type column attribute alter table user_info add height tinyint unsigned not null default 0; Deleting a column Syntax: alter table table name drop column name alter table user_info drop height; Add a column and put it after the specified column Syntax: alter table table name add column name type attribute [default value] after specify column name alter table user_info add height tinyint not null default 0 after username; Modify the specified column name Syntax: alter table table name change old column name new column name type attribute default value alter table user_info change height shengao smallint not null default 0; modify Modify the column, but cannot modify the column name Syntax: alter table table name modify column name type attribute default value alter table user_info modify shengao tinyint not null default 0; Readers who are interested in more MySQL-related content can check out the following topics: "Summary of MySQL Common Functions", "Summary of MySQL Log Operation Skills", "Summary of MySQL Transaction Operation Skills", "Summary of MySQL Stored Procedure Skills" and "Summary of MySQL Database Lock-Related Skills". I hope this article will be helpful to everyone's MySQL database design. You may also be interested in:
|
<<: Implementation process of nginx high availability cluster
>>: Real-time refresh of long connection on Vue+WebSocket page
Table of contents Introduction Child Process Crea...
There is another tree structure Javascript object...
1. Introduction to Nginx Nginx is a web server th...
Be careful when listening for events that are tri...
As shown below: The test command determines wheth...
1. How do I remove the blank space of a few pixels...
Table of contents About Kubernetes Basic environm...
Several commonly used string methods in JavaScrip...
The HTML specification document introduces the cr...
1. Download Go to the Apache official website htt...
Specific method: Step 1: Stop the mysql service /...
introduce Vue Router is the official routing mana...
This article uses an example to describe the inte...
In Linux operation and configuration work, dual n...
Table of contents 1. Technical Overview 2. Techni...