Summary of MySQL's commonly used SQL statements for creating tables, adding fields, modifying fields, and adding indexes

Summary of MySQL's commonly used SQL statements for creating tables, adding fields, modifying fields, and adding indexes

This article uses examples to describe the common MySQL SQL statements for creating tables, adding fields, modifying fields, and adding indexes. Share with you for your reference, the details are as follows:

Create a table:

DROP TABLE IF EXISTS bulletin;
CREATE TABLE bulletin(
 id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, # Primary key uid INT(11) NOT NULL DEFAULT 0, # Creator id
 context VARCHAR(600) NOT NULL DEFAULT '', # Announcement details (300 words)
 begintime DEC(20) NOT NULL DEFAULT 0, # Announcement start time endtime DEC(20) NOT NULL DEFAULT 0, # Announcement end time createtime DEC(20) NOT NULL DEFAULT 0, # Creation time modifytime DEC(20) NOT NULL DEFAULT 0 # Modification time PRIMARY KEY (`Id`),
)DEFAULT CHARSET=UTF8 TYPE=INNODB;

Modify the original field name and type:

ALTER TABLE bulletin CHANGE uid username VARCHAR(50) NOT NULL DEFAULT '';

Add a new field:

alter table bulletin add citycode varchar(6) not null default 0; # city code

1. Set the encoding when creating the database

create database test character set utf8;

2. Set the encoding when creating a table

create table test(id int primary key)DEFAULT charset=utf8;

3. Modify the database encoding

alter database test character set utf8;

4. Modify the default encoding of the table

alter table test character set utf8;

5. Modify field encoding

alter table test modify col_name varchar(50) CHARACTER SET utf8;

Adding Index Methods

1. Add a PRIMARY KEY

mysql>ALTER TABLE `table_name` ADD PRIMARY KEY (`column`)

2. Add UNIQUE (unique index)

mysql>ALTER TABLE `table_name` ADD UNIQUE (
`column`
)

3. Add INDEX (normal index)

mysql>ALTER TABLE `table_name` ADD INDEX index_name (`column`)

4. Add FULLTEXT (full-text index)

mysql>ALTER TABLE `table_name` ADD FULLTEXT (
`column`
)

5. Add multi-column index

mysql>ALTER TABLE `table_name` ADD INDEX index_name ( `column1`, `column2`, `column3` )

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:
  • Mysql table creation commonly used SQL statements personal experience sharing
  • Detailed summary of mysql sql statements to create tables
  • How to generate Hive table creation statement comment script in MySQL metadata
  • Summary of commonly used SQL statements for creating MySQL tables

<<:  js to achieve waterfall flow layout (infinite loading)

>>:  How to modify iTunes backup path under Windows

Recommend

JS array deduplication details

Table of contents 1 Test Cases 2 JS array dedupli...

Solve the problem that vue project cannot carry cookies when started locally

Solve the problem that the vue project can be pac...

How to install Nginx in a specified location in Centos system

How to install Nginx in a specified location in C...

Summary of various uses of JSON.stringify

Preface Anyone who has used json should know that...

Analysis of the principle of Mybatis mapper dynamic proxy

Preface Before we start explaining the principle ...

Detailed tutorial on installing MariaDB on CentOS 8

MariaDB database management system is a branch of...

Detailed explanation of computed properties in Vue

Table of contents Interpolation Expressions metho...

How to create a swap partition file in Linux

Introduction to Swap Swap (i.e. swap partition) i...

VMware Tools installation and configuration tutorial for Ubuntu 18.04

This article records the installation and configu...

Robots.txt detailed introduction

Basic introduction to robots.txt Robots.txt is a p...

How to sort a row or column in mysql

method: By desc: Neither can be achieved: Method ...

JavaScript ECharts Usage Explanation

I used ECharts when doing a project before. Today...

Webpack file packaging error exception

Before webpack packaging, we must ensure that the...

JavaScript implements countdown on front-end web page

Use native JavaScript to simply implement the cou...