Home Backend Development PHP Tutorial Some problems with stored procedures and functions in mysql_PHP tutorial

Some problems with stored procedures and functions in mysql_PHP tutorial

Jul 21, 2016 pm 03:57 PM
mysql Write function Discover and storage of process question

I recently wrote some MySQL stored procedures and functions, and found that there are very few valuable documents on the Internet. Most of them are copied from the manual, and some practical problems cannot be solved, such as using variables as table names.

After repeated debugging, I finally found a solution. Here are some simple records, which are relatively fragmented. Part of the content is reproduced from http://my.opera.com/Dereky/blog/show.dml/322997


1. Use variables as table names:

Simply use set or It is not possible to define a variable with the declare statement and then use it directly as the table name of SQL. MySQL will treat the variable name as the table name. The same is true in other sql databases. The solution for mssql is to use the entire sql statement as a variable, interspersed with variables as table names, and then use sp_executesql to call the statement.

This was not possible before MySQL 5.0. After 5.0, a brand new statement was introduced, which can achieve functions similar to sp_executesql (only valid for procedure, function does not support dynamic query):

PREPARE stmt_name FROM preparable_stmt;
EXECUTE stmt_name [USING @var_name [, @var_name] ...];
{DEALLOCATE | DROP} PREPARE stmt_name;

In order to have a perceptual understanding,
Here are a few small examples:

mysql> PREPARE stmt1 FROM 'SELECT SQRT(POW(?,2) + POW(?,2)) AS hypotenuse';
mysql> SET @a = 3;
mysql> SET @b = 4;
mysql> EXECUTE stmt1 USING @a, @b;
+------------+
| hypotenuse |
+----------------+
| 5 |
+----------------+
mysql> DEALLOCATE PREPARE stmt1;

mysql> SET @s = 'SELECT SQRT(POW(?,2) + POW(?,2)) AS hypotenuse';
mysql> PREPARE stmt2 FROM @s;
mysql> SET @a = 6;
mysql> SET @b = 8;
mysql> EXECUTE stmt2 USING @a, @b;
+------------+
| hypotenuse |
+------------+
| 10 |
+------------+
mysql> DEALLOCATE PREPARE stmt2;

If your MySQL version is 5.0.7 or higher, you can also use it in the LIMIT clause. The example is as follows:
mysql> SET @a=1;mysql> PREPARE STMT FROM "SELECT * FROM tbl LIMIT ?";
mysql> EXECUTE STMT USING @a;
mysql> SET @skip=1; SET @numrows=5;
mysql> * FROM tbl LIMIT ?, ?";
mysql> EXECUTE STMT USING @skip, @numrows;

A few points to note when using PREPARE:
A: PREPARE stmt_name FROM preparable_stmt; predefined one statement and assign it to stmt_name, tmt_name is not case-sensitive.
B: Even if ? in the preparable_stmt statement represents a string, you do not need to enclose ? in quotes.
C: If the new PREPARE statement uses an existing stmt_name, the original one will be released immediately! Even if this new PREPARE statement cannot be executed correctly due to an error.
D: The scope of PREPARE stmt_name is visible to the current client connection session.
E: To release the resources of a predefined statement, you can use the DEALLOCATE PREPARE syntax.
F: In the EXECUTE stmt_name syntax, if stmt_name does not exist, an error will be triggered.
G: If the DEALLOCATE PREPARE syntax is not explicitly called to release the resource when terminating the client connection session, the server will automatically release it.
H: Among the predefined statements, CREATE TABLE, DELETE, DO, INSERT, REPLACE, SELECT, SET, UPDATE, and most of the SHOW syntax are supported.
I: The PREPARE statement cannot be used for stored procedures and custom functions! But starting from MySQL 5.0.13, it can be used in stored procedures, but use in functions is still not supported!

The following is an example:
CREATE PROCEDURE `p1`(IN id INT UNSIGNED,IN name VARCHAR(11))
BEGIN lable_exit:
BEGIN
SET @SqlCmd = ' SELECT * FROM tA ';
IF id IS NOT NULL THEN
SET @SqlCmd = CONCAT(@SqlCmd , 'WHERE id=?');
PREPARE stmt FROM @SqlCmd;
SET @a = id;
EXECUTE stmt USING @a;
LEAVE lable_exit;
END IF;
IF name IS NOT NULL THEN
SET @SqlCmd = CONCAT(@SqlCmd , 'WHERE name LIKE ? ');
PREPARE stmt FROM @SqlCmd;
SET @a = CONCAT(name, '%');
EXECUTE stmt USING @a;
LEAVE lable_exit;
END IF;
END lable_exit;
END;
CALL `p1`(1,NULL);
CALL `p1`(NULL,'QQ');
DROP PROCEDURE `p1`;

After understanding the usage of PREPARE, it is easy to use variables as table names. However, some other problems were discovered during the actual operation, such as variable definition, usage of declare variables and set @var=value variables, and variables passed in as parameters.

After testing, it was found that variables defined like set @var=value will be converted as variables if they are written directly in the string. Declare variables and variables passed in as parameters must be connected using CONCAT. The specific principle has not been studied.

EXECUTE stmt USING @a; The variables after USING in such a statement can only be set @var=value. Variables passed in by declare and parameters cannot be used.

In addition, PHP also encounters many problems when calling mysql stored procedures. Problems like PROCEDURE p can't return a result set in the given context always occur.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/317913.htmlTechArticleI recently wrote some mysql stored procedures and functions, and found that there are very few valuable documents on the Internet, and most of them follow the instructions Copied from the manual, some practical problems cannot be solved, such as using variables as table names...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

How to delete data from MySQL table using PHP? How to delete data from MySQL table using PHP? Jun 05, 2024 pm 12:40 PM

PHP provides the following methods to delete data in MySQL tables: DELETE statement: used to delete rows matching conditions from the table. TRUNCATETABLE statement: used to clear all data in the table, including auto-incremented IDs. Practical case: You can delete users from the database using HTML forms and PHP code. The form submits the user ID, and the PHP code uses the DELETE statement to delete the record matching the ID from the users table.

See all articles