Example statements for indexes and constraints in MySQL

Example statements for indexes and constraints in MySQL

Foreign Keys

Query which tables the primary key of a table is the foreign key of

SELECT
	TABLE_NAME,
	COLUMN_NAME,
	CONSTRAINT_NAME,
	REFERENCED_TABLE_NAME,
	REFERENCED_COLUMN_NAME
FROM
	INFORMATION_SCHEMA.KEY_COLUMN_USAGE
WHERE
	TABLE_SCHEMA = 'mydbname'
	AND REFERENCED_TABLE_NAME = 'Table name';

Export all foreign key statements

SELECT
	CONCAT('ALTER TABLE ', TABLE_NAME, ' ADD CONSTRAINT ', CONSTRAINT_NAME, ' FOREIGN KEY (', COLUMN_NAME, ') REFERENCES ', REFERENCED_TABLE_NAME, '(', REFERENCED_COLUMN_NAME, ') ON DELETE CASCADE ON UPDATE CASCADE;')
FROM
	INFORMATION_SCHEMA.KEY_COLUMN_USAGE
WHERE
	TABLE_SCHEMA = 'mydbname'
	AND REFERENCED_TABLE_NAME IS NOT NULL;

Delete all foreign key statements

SELECT
	CONCAT('ALTER TABLE ', TABLE_NAME, ' DROP FOREIGN KEY ', CONSTRAINT_NAME, ';')
FROM
	INFORMATION_SCHEMA.KEY_COLUMN_USAGE
WHERE
	TABLE_SCHEMA = 'mydbname'
	AND REFERENCED_TABLE_NAME IS NOT NULL;

Auto-increment

Export the statement for creating an auto-increment field

SELECT
	CONCAT( 'ALTER TABLE `', TABLE_NAME, '` ', 'MODIFY COLUMN `', COLUMN_NAME, '` ', UPPER( COLUMN_TYPE ), ' NOT NULL AUTO_INCREMENT COMMENT "',COLUMN_COMMENT,'";' ) as 'ADD_AUTO_INCREMENT'
FROM
	information_schema.COLUMNS 
WHERE
	TABLE_SCHEMA = 'mydbname' 
	AND EXTRA = UPPER( 'AUTO_INCREMENT' ) 
ORDER BY
	TABLE_NAME ASC;

Create and delete all auto-increment fields

SELECT
	CONCAT( 'ALTER TABLE `', TABLE_NAME, '` ', 'MODIFY COLUMN `', COLUMN_NAME, '` ', UPPER( COLUMN_TYPE ), ' NOT NULL;' ) as 'DELETE_AUTO_INCREMENT'
FROM
	information_schema.COLUMNS 
WHERE
	TABLE_SCHEMA = 'mydbname' 
	AND EXTRA = UPPER( 'AUTO_INCREMENT' ) 
ORDER BY
	TABLE_NAME ASC;

index

Export all indexes

SELECT
	CONCAT(
		'ALTER TABLE `',
		TABLE_NAME,
		'` ',
		'ADD ',
	IF
		(
			NON_UNIQUE = 1,
		CASE
				UPPER( INDEX_TYPE ) 
				WHEN 'FULLTEXT' THEN
				'FULLTEXT INDEX' 
				WHEN 'SPATIAL' THEN
				'SPATIAL INDEX' ELSE CONCAT( 'INDEX `', INDEX_NAME, '` USING ', INDEX_TYPE ) 
			END,
		IF
			(
				UPPER( INDEX_NAME ) = 'PRIMARY',
				CONCAT( 'PRIMARY KEY USING ', INDEX_TYPE ),
			CONCAT( 'UNIQUE INDEX `', INDEX_NAME, '` USING ', INDEX_TYPE ))),
		CONCAT( '(`', COLUMN_NAME, '`)' ),
		';' 
) AS 'ADD_ALL_INDEX' 
FROM
	information_schema.STATISTICS 
WHERE
	TABLE_SCHEMA = 'mydbname' 
ORDER BY
	TABLE_NAME ASC,
	INDEX_NAME ASC;

Delete all indexes

SELECT
	CONCAT( 'ALTER TABLE `', TABLE_NAME, '` ', CONCAT( 'DROP ', IF ( UPPER( INDEX_NAME ) = 'PRIMARY', 'PRIMARY KEY', CONCAT( 'INDEX `', INDEX_NAME, '`' ))), ';' ) AS 'DELETE_ALL_INDEX' 
FROM
	information_schema.STATISTICS 
WHERE
	TABLE_SCHEMA = 'mydbname' 
ORDER BY
	TABLE_NAME ASC;

Data Merge

When migrating and merging data, the more difficult thing is that the primary keys of different databases are repeated, so we have to modify the primary key values ​​in batches. In order to avoid duplication, we can change the auto-increment number to a string

The steps are basically as follows

  • Cancel primary key auto-increment
  • Drop all foreign keys
  • Change the primary key field to varchar
  • Add all foreign keys
  • Modify the value of a primary key
  • Merge data

Be careful when modifying primary key values

If the value cannot be modified directly in the case of self-associations such as id and pid, you need to delete the constraint first and then add it.

for example

Deleting Self Constraints

ALTER TABLE `t_director` DROP FOREIGN KEY `fk_directorpid`;

Modify value

update t_director set directorid=directorid+100000000;
update t_director set directorid=CONV(directorid,10,36);

update t_director set directorpid=directorpid+100000000 WHERE directorpid is not null;
update t_director set directorpid=CONV(directorpid,10,36) WHERE directorpid is not null;

Adding Self Constraints

ALTER TABLE t_director ADD CONSTRAINT fk_directorpid FOREIGN KEY (directorpid) REFERENCES t_director(directorid) ON DELETE CASCADE ON UPDATE CASCADE;

Notice

The last two parameters of CONV(directorpid,10,36) are the original digital base and the base to be converted.

The first parameter can be converted even if the type is varchar as long as the content is a number.

The above is the details of the sample statements for indexes and constraints in Mysql. For more information about MySQL indexes and constraints, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • MySQL not null constraint case explanation
  • MySQL foreign key constraint (FOREIGN KEY) case explanation
  • Summary of MySQL foreign key constraints and table relationships
  • MySQL integrity constraints definition and example tutorial
  • MySQL 8.0 New Features - Introduction to Check Constraints
  • Creation, constraints and deletion of foreign keys in MySQL
  • Example explanation of MySQL foreign key constraints
  • Detailed explanation of MySQL foreign key constraints
  • Detailed explanation of mysql integrity constraints example
  • MySQL Constraints Super Detailed Explanation

<<:  Docker modifies the configuration information of an unstarted container

>>:  Some questions about hyperlinks

Recommend

MySQL 8.0.14 installation and configuration method graphic tutorial

This article records the installation and configu...

How to solve the error of connecting to the database when ServerManager starts

Servermanager startup connection database error R...

Vue backend management system implementation of paging function example

This article mainly introduces the implementation...

How to start Vue project with M1 pro chip

Table of contents introduction Install Homebrew I...

What is Makefile in Linux? How does it work?

Run and compile your programs more efficiently wi...

Detailed explanation of how to monitor MySQL statements

Quick Reading Why do we need to monitor SQL state...

Some conclusions on developing mobile websites

The mobile version of the website should at least...

Explanation of the problem that JavaScript strict mode does not support octal

Regarding the issue that JavaScript strict mode d...

MySQL 8.0.15 compressed version installation graphic tutorial

This article shares the installation method of My...

Briefly describe the difference between MySQL and Oracle

1. Oracle is a large database while MySQL is a sm...

How to clean up data in MySQL online database

Table of contents 01 Scenario Analysis 02 Operati...

How to completely uninstall mysql under CentOS

This article records the complete uninstallation ...

Introduction to the usage of common XHTML tags

There are many tags in XHTML, but only a few are ...