Use dynamic SQL in mysql

Source: Internet
Author: User

Mysql> set @ SQL _text: = 'select count (*) from test ';
Query OK, 0 rows affected (0.00 sec)

Mysql> prepare stmt from @ SQL _text;
Query OK, 0 rows affected (0.04 sec)
Statement prepared

Mysql> execute stmt;
+ ---------- +
| Count (*) |
+ ---------- +
| 0 |
+ ---------- +
1 row in set (0.19 sec)

Mysql> deallocate prepare stmt;
Query OK, 0 rows affected (0.00 sec)

Changing the value of @ SQL _text In the stored procedure can achieve the dynamic SQL effect.

Note that SQL statements that can use prepare have restrictions:

The following SQL statements can be used in prepared statements: CREATE TABLE, DELETE, DO, INSERT, REPLACE, SELECT, SET, UPDATE, and most SHOW statements. supported. analyze table, optimize table, and repair table are supported as of MySQL 5.0.23. other statements are not yet supported.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.