In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
This paper gives an example to describe the implementation method of adding, deleting and modifying columns in 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 defaults to the last column of the table
Syntax: alter table table name add column name column type column attribute
Alter table user_info add height tinyint unsigned not null default 0
Delete column
Syntax: alter table table name drop column name
Alter table user_info drop height
Add a column, after the specified column
Syntax: alter table table name add column name type attribute [default] after specifies the 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 property default
Alter table user_info change height shengao smallint not null default 0
Modify modifies columns, but cannot modify column names
Syntax: alter table table name modify column name type attribute default
Alter table user_info modify shengao tinyint not null default 0
More readers who are interested in MySQL-related content can check out this site's special topics: "A Summary of MySQL Common functions", "A Collection of MySQL Log Operation skills", "MySQL transaction Operation skills Summary", "MySQL stored procedure skills Collection" and "MySQL Database Lock related skills Summary"
It is hoped that what is described in this article will be helpful to everyone's MySQL database design.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.