Detailed steps to modify MySQL stored procedures

Detailed steps to modify MySQL stored procedures

Preface

In actual development, business requirements are often modified, so it is inevitable to modify the characteristics of the stored procedure.

In MySQL, use the ALTER statement to modify the characteristics of a stored procedure

Syntax

ALTER {PROCEDURE | FUNCTION} sp_name [characteristic……]

Parameter Description

  • Sp_name, which indicates the name of the stored procedure or function
  • Characteristic, which part of the stored procedure is to be modified
  • The values ​​of Characteristic are as follows
  • CONTAINS SQL means that the subroutine contains SQL statements, but does not contain statements that read or write data.
  • NO SQL, indicating that the subroutine does not contain SQL statements
  • READS SQL DATA, indicating that the subroutine contains statements that read data
  • MODIFIES DATA, indicating that the subroutine contains statements for writing data
  • SQL SECURITY {DEFINER | INVOKER}, specifies who has permission to execute
  • DEFINER, which means that only the definer can execute it.
  • INVOKER, indicating that the caller can execute
  • COMMENT'string', indicating comment information

Modify the definition of the stored procedure CountProc1

Change the read and write permissions to MODIFIES SQL DATA and specify that the caller can execute

View modified information

Currently, MySQL does not provide code modification for existing stored procedures.

If you must modify the diam of a stored procedure, you must first delete the stored procedure and then rewrite the code or create a new stored procedure.

This is the end of this article about modifying MySQL stored procedures. For more relevant content about modifying MySQL stored procedures, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of creating, calling and managing MySQL stored procedures
  • Introduction to query commands for MySQL stored procedures
  • MySQL stored procedure in, out and inout parameter examples and summary
  • Using cursor loop to read temporary table in Mysql stored procedure
  • Mysql modify stored procedure related permissions issue
  • In-depth explanation of MySQL stored procedures (in, out, inout)
  • How to create a table by month in MySQL stored procedure
  • A brief discussion on MySql views, triggers and stored procedures
  • Detailed example of using if statement in mysql stored procedure
  • Analysis of the advantages and disadvantages of MySQL stored procedures

<<:  JS+Canvas draws a lucky draw wheel

>>:  The forgotten button tag

Recommend

Detailed explanation of three ways to import CSS files

There are three ways to introduce CSS: inline sty...

MySQL database basic syntax and operation

MySQL database basic syntax DDL Operations Create...

Example code for implementing a pure CSS pop-up menu using transform

Preface When making a top menu, you will be requi...

Master-slave synchronization configuration of Mysql database

Table of contents Mysql master-slave synchronizat...

Solution to MySQL Installer is running in Community mode

Today I found this prompt when I was running and ...

Linux CentOS MySQL database installation and configuration tutorial

Notes on installing MySQL database, share with ev...

In-depth analysis of HTML semantics and its related front-end frameworks

About semantics Semantics is the study of the rel...

Vue+thinkphp5.1+axios to realize file upload

This article shares with you how to use thinkphp5...

Some tips on using the HTML title attribute correctly

If you want to hide content from users of phones, ...

How to solve the front-end cross-domain problem using Nginx proxy

Preface Nginx (pronounced "engine X") i...

MySQL 8.0.11 MSI version installation and configuration graphic tutorial

This article shares the installation and configur...

Web design and production test questions and reference answers

<br />Web Design and Production Test Part I ...

CSS3 new layout: flex detailed explanation

Flex Basic Concepts Flex layout (flex is the abbr...