How to add, delete and modify columns in MySQL database

How to add, delete and modify columns in MySQL database

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:
  • The difference between MySQL database stored procedures and transactions
  • The meaning and calculation method of QPS and TPS of MySQL database
  • How to backup and restore the mysql database if it is too large
  • PHP backend source code example for backing up MySQL database
  • How to use shell scripts to automatically back up multiple MySQL databases every day
  • Introduction to using mysqli's prepare to operate the database in PHP5
  • MySQL database migration quickly exports and imports large amounts of data
  • Shell script to operate MySQL database to delete duplicate data
  • Combining insert and select to implement the method of "inserting the maximum value of a field in the database + 1"
  • Talk about some experience in database field design

<<:  Implementation process of nginx high availability cluster

>>:  Real-time refresh of long connection on Vue+WebSocket page

Recommend

How to create a child process in nodejs

Table of contents Introduction Child Process Crea...

Vue virtual Dom to real Dom conversion

There is another tree structure Javascript object...

Nginx Linux installation and deployment detailed tutorial

1. Introduction to Nginx Nginx is a web server th...

Analysis of examples of using anti-shake and throttling in Vue components

Be careful when listening for events that are tri...

How to view the status of remote server files in Linux

As shown below: The test command determines wheth...

11 common CSS tips and experience collection

1. How do I remove the blank space of a few pixels...

Implementation of building Kubernetes cluster with VirtualBox+Ubuntu16

Table of contents About Kubernetes Basic environm...

Cross-origin image resource permissions (CORS enabled image)

The HTML specification document introduces the cr...

Installation and use of Apache stress testing tools

1. Download Go to the Apache official website htt...

MySQL implements an example method of logging in without a password

Specific method: Step 1: Stop the mysql service /...

Installation and configuration method of vue-route routing management

introduce Vue Router is the official routing mana...

Example analysis of interval calculation of mysql date and time

This article uses an example to describe the inte...

Linux dual network card binding script method example

In Linux operation and configuration work, dual n...

How to understand Vue front-end and back-end data interaction and display

Table of contents 1. Technical Overview 2. Techni...