Mysql dynamically updates the database script example explanation

Mysql dynamically updates the database script example explanation

The specific upgrade script is as follows:

Dynamically delete indexes

DROP PROCEDURE IF EXISTS UPGRADE;
DELIMITER $$
CREATE PROCEDURE UPGRADE()
BEGIN
-- RESOURCE.AUDIO_ATTRIBUTE
 IF EXISTS(SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'RESOURCE' AND TABLE_NAME = 'AUDIO_ATTRIBUTE' AND INDEX_NAME = 'resource_publish_resource_id_index')
  THEN 
    ALTER TABLE `AUDIO_ATTRIBUTE` DROP INDEX resource_publish_resource_id_index;
 END IF;
END$$
DELIMITER ;
CALL UPGRADE();
DROP PROCEDURE IF EXISTS UPGRADE;

Dynamically adding fields

DROP PROCEDURE IF EXISTS UPGRADE;
DELIMITER $$
CREATE PROCEDURE UPGRADE()
BEGIN
-- HOMEWORK.HOMEWORK_QUESTION_GROUP.FROM_ID
 IF NOT EXISTS(SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'HOMEWORK' AND TABLE_NAME = 'HOMEWORK_QUESTION_GROUP' AND COLUMN_NAME = 'FROM_ID')
  THEN 
    ALTER TABLE `HOMEWORK_QUESTION_GROUP` ADD COLUMN FROM_ID VARCHAR(50) NULL;
 END IF;
-- HOMEWORK.HOMEWORK_QUESTION_GROUP.QUESTION_TYPE
 IF NOT EXISTS(SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'HOMEWORK' AND TABLE_NAME = 'HOMEWORK_QUESTION_GROUP' AND COLUMN_NAME = 'QUESTION_TYPE')
  THEN 
    ALTER TABLE `HOMEWORK_QUESTION_GROUP` ADD COLUMN QUESTION_TYPE VARCHAR(50) NULL;
 END IF;
--HOMEWORK.HOMEWORK_QUESTION_GROUP.DIFFICULTY
 IF NOT EXISTS(SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'HOMEWORK' AND TABLE_NAME = 'HOMEWORK_QUESTION_GROUP' AND COLUMN_NAME = 'DIFFICULTY')
  THEN 
    ALTER TABLE `HOMEWORK_QUESTION_GROUP` ADD COLUMN DIFFICULTY VARCHAR(50) NULL;
 END IF;
END$$
DELIMITER ;
CALL UPGRADE();
DROP PROCEDURE IF EXISTS UPGRADE;

The other syntaxes are similar, mainly distinguishing between the usage of EXISTS and NOT EXISTS .

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Implementation code for accessing multiple databases through Spring Boot configuration of dynamic data sources
  • Detailed explanation of SpringBoot creating scheduled tasks (dynamic execution with database)
  • Example of MVC cross-database multi-table joint dynamic condition query function implemented in asp.net
  • Tutorial on dynamic SQL query on database in Java's MyBatis framework
  • Yii operation database to realize the method of dynamically obtaining table name
  • How to dynamically create Access database and table in C#
  • ext combobox dynamically loads database data (with front and back ends)
  • Ajax dynamic database loading example
  • c# asp .net method to dynamically create sql database table
  • JavaScript dynamically adds table data rows (ASP background database storage example)

<<:  How to install nginx on win10

>>:  Three examples of nodejs methods to obtain form data

Recommend

Solution to Django's inability to access static resources with uwsgi+nginx proxy

When deploying uwsgi+nginx proxy Django, access u...

How to get datetime data in mysql, followed by .0

The data type of MySQL is datetime. The data stor...

How to deploy python crawler scripts on Linux and set up scheduled tasks

Last year, due to project needs, I wrote a crawle...

Detailed explanation of padding and abbreviations within the CSS box model

As shown above, padding values ​​are composite at...

How to run multiple MySQL instances in Windows

Preface In Windows, you can start multiple MySQL ...

MySQL tutorial data definition language DDL example detailed explanation

Table of contents 1. Introduction to the basic fu...

Detailed explanation of the text-fill-color property in CSS3

What does text-fill-color mean? Just from the lit...

JavaScript to achieve drop-down menu effect

Use Javascript to implement a drop-down menu for ...

CSS realizes div completely centered without setting height

Require The div under the body is vertically cent...

Font Treasure House 50 exquisite free English font resources Part 2

Designers have their own font library, which allo...

C# implements MySQL command line backup and recovery

There are many tools available for backing up MyS...

Implementation of breakpoint resume in Node.js

Preface Normal business needs: upload pictures, E...