>  기사  >  데이터 베이스  >  MySQL – Dynamic SQL with EXECUTE and PREPARE Statements_MySQL

MySQL – Dynamic SQL with EXECUTE and PREPARE Statements_MySQL

WBOY
WBOY원래의
2016-06-01 13:08:161106검색

MySQL supports Dynamic SQL with the help of EXECUTE and PREPARE statements. Suppose you have a scenario where you need to pass table name as parameter value and returns all column values, you can use Dynamic SQL.

Let us create this table and data.

CREATE TABLE TestTable (ID INT, Col VARCHAR(4));<br> INSERT INTO TestTable (ID, Col)<br> SELECT 1, 'A'<br> UNION ALL<br> SELECT 1, 'B'<br> UNION ALL<br> SELECT 1, 'C'<br> UNION ALL<br> SELECT 2, 'A'<br> UNION ALL<br> SELECT 2, 'B'<br> UNION ALL<br> SELECT 2, 'C'<br> UNION ALL<br> SELECT 2, 'D'<br> UNION ALL<br> SELECT 2, 'E';<br>

Now pass the table name as a parameter and returns all rows from it.

SET @table_name:='TestTable';<br> SET @sql:=CONCAT('SELECT * FROM ',@table_name);<br> PREPARE dynamic_statement FROM @sql;<br> EXECUTE dynamic_statement;<br> DEALLOCATE PREPARE dynamic_statement;

The variable @table_name is assigned name of the table. The variable @sql forms SELECT statement concatenating the Table name so the actual SELECT statement becomes SELECT * FROM TestTable. The PREPARE statement prepares the statement for execution and assigns a name (in this case it is dynamic_statement). EXECUTE command executes the statement prepared by the prepared name dynamic_statement and produces the result. The DEALLOCATE command releases the prepared statement.

So the result is

ID Col 1 A 1 B 1 C 2 A 2 B 2 C 2 D 2 E

Reference: Pinal Dave ( http://blog.sqlauthority.com )

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.