How to add and delete unique indexes for fields in MySQL

How to add and delete unique indexes for fields in MySQL

1. Add PRIMARY KEY (primary key index)

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 indexes

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

The above method of adding and deleting unique indexes (unique) for fields in MySQL is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Solve the problem of SQL Server saving object string conversion into uniqueidentifier failure
  • The use of mysql unique key in query and related issues
  • Explanation of MySQL index types Normal, Unique and Full Text
  • MySQL uses UNIQUE to implement non-duplicate data insertion
  • How to solve the problem of inserting duplicate values ​​into unique columns in Mysql
  • SQL statement to convert uniqueidentifier into varchar data type
  • Detailed explanation of the principles and applications of Unique SQL

<<:  Get a list of your top 10 most frequently used terminal commands in Linux

>>:  Pros and Cons of Vite and Vue CLI

Recommend

Simple steps to configure Nginx reverse proxy with SSL

Preface A reverse proxy is a server that receives...

Tutorial on how to connect and use MySQL 8.0 in IDEA's Maven project

First, let's take a look at my basic developm...

Detailed steps to install mysql 8.0.18-winx64 on win10

1. First go to the official website to download t...

How to import and export Docker images

This article introduces the import and export of ...

Detailed explanation of Nginx process scheduling problem

Nginx uses a fixed number of multi-process models...

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

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

Steps to create your own YUM repository

To put it simply, the IP of the virtual machine u...

A brief discussion on why daemon off is used when running nginx in docker

I'm very happy. When encountering this proble...

JavaScript implements mouse control of free moving window

This article shares the specific code of JavaScri...