The significance of MySQL PREPARE preprocessing technology is that it is a technology to reduce the pressure on the server. That is to say, in most cases, a certain SQL statement for a certain requirement may be called and executed repeatedly, or only individual values may be different each time it is executed.
1. PreprocessingMySQL provides support for server-side prepared statements, which is called preprocessing. This support takes advantage of an efficient client/server binary protocol. Using prepared statements with placeholders for parameter values provides the following benefits:
Preprocessing interface 1. Prepared statements in applications You can use server-side prepared statements through client programming interfaces, including the MySQL C API client library for C programs, MySQL Connector/J for Java programs, and MySQL for use. NET technology program MySQL Connector/NET. For example, the C API provides a set of function calls that constitute its prepared statement API. 2. Prepared statements in SQL scripts There is also an alternative SQL interface for prepared statements. But no programming is required; it is directly available at the SQL level, and you can use it in any program that can send SQL statements to the server to be executed, such as the mysql client program. 2. Pretreatment application methodThe SQL syntax for prepared statements is based on three SQL statements:
A. Example:Prepared statements cannot be used across sessions: mysql>CREATE TABLE `t1` ( `id` int NOT NULL, NAME varchar(20), KEY `idx_id` (`id`) ) ENGINE=InnoDB ; mysql>INSERT INTO t1(id,name) values(1,'A'),(2,'B'),(3,'C'),(4,'D'),(5,'E'),(6,'F'); #Set the prepared statement mysql>PREPARE stmt1 FROM 'SELECT * FROM t1 WHERE a=? '; #Set the transfer variable mysql>SET @a = 8; #Execute statementmysql>EXECUTE stmt1 USING @a; # Release the prepared statement mysql>DEALLOCATE PREPAR stmt1; B. Preprocessing to track changes in execution plansBy observing the changes in the status indicator Select_scan (the number of full-table search queries executed), you can determine whether the data volume is affected. The execution plan of the preprocessed SQL statement changes as the amount of data changes. C. The stored procedure contains preprocessingPrepared Statements If you create a prepared statement within a stored routine, it is not released when the stored routine ends. DELIMITER // DROP PROCEDURE IF EXISTS proc_prepared; CREATE PROCEDURE proc_prepared() BEGIN DECLARE a INT; DECLARE i INT; PREPARE stmt1 FROM 'SELECT * FROM t1 WHERE id>? '; SET @a = 5; EXECUTE stmt1 USING @a; END // DELIMITER ; call proc_prepared(); After the stored procedure, the prepared statement is called separately and the result set is returned: This indicates that the preprocessing did not destroy SET @a = 5; EXECUTE stmt1 USING @a; +----+------+ | id | NAME | +----+------+ | 6 | F | . . . After the stored procedure, the prepared statement is called separately and the result set is returned: This means that the preprocessing is not destroyed D. View the cost of parsing statements through profile By profiling the execution time of various statements, the time spent on parsing the statements is within 0.01 seconds. Can be ignored. 3. SummaryThe initial role of precompilation:
Limitations and practical effects:
Judging from its limitations and actual effects, it is currently not functioning as it should. Not suitable for use in a sound field environment. This is the end of this article about the specific use of MySQL prepare preprocessing. For more relevant MySQL prepare preprocessing content, 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:
|
<<: Flex layout allows subitems to maintain their own height
Common usage of Regexp in Mysql Fuzzy matching, c...
Configure Git environment in Docker At work, I en...
Preface I have seen many articles about the leftm...
Since Zabbix version 3.0, it has supported encryp...
Table of contents Ideas Host Configuration Modify...
In Vue, we can define (register) local components...
Today, when I was using Nginx, a 500 error occurr...
CSS Layout - position Property The position attri...
To search for RocketMQ images, you can search on ...
Table of contents (I) Using Workbench to operate ...
After installing Navicat The following error may ...
Virtual machines are very convenient testing soft...
Specific method: (Recommended tutorial: MySQL dat...
The steps are as follows 1. Create a docker group...
need: The backend returns an array object, which ...