Use parameters in EXECUTE IMMEDIATE : Execute Immediate « PL SQL « Oracle PL / SQL






Use parameters in EXECUTE IMMEDIATE

  
SQL>
SQL> CREATE TABLE MyTable(MyRow INTEGER, MyDesc VARCHAR2(50));

Table created.

SQL>
SQL> SET ECHO ON
SQL>
SQL> DECLARE
  2      v_YourNum   NUMBER;
  3      v_YourDesc  VARCHAR2(50);
  4      v_INSERT_stmt VARCHAR2(100);
  5  BEGIN
  6      v_INSERT_stmt := 'INSERT INTO mytable VALUES (:1, :2)';
  7
  8      v_YourNum := 1;
  9      v_YourDesc := 'One';
 10      EXECUTE IMMEDIATE v_INSERT_stmt USING v_YourNum, v_YourDesc;
 11
 12      v_YourNum := 2;
 13      v_YourDesc := 'Two';
 14      EXECUTE IMMEDIATE v_INSERT_stmt USING v_YourNum, v_YourDesc;
 15
 16      v_YourNum := 3;
 17      v_YourDesc := 'Three';
 18      EXECUTE IMMEDIATE v_INSERT_stmt USING v_YourNum, v_YourDesc;
 19
 20      v_YourNum := 4;
 21      v_YourDesc := 'Four';
 22      EXECUTE IMMEDIATE v_INSERT_stmt USING v_YourNum, v_YourDesc;
 23
 24      v_YourNum := 5;
 25      v_YourDesc := 'Five';
 26      EXECUTE IMMEDIATE v_INSERT_stmt USING v_YourNum, v_YourDesc;
 27  END;
 28  /

PL/SQL procedure successfully completed.

SQL>
SQL> select * FROM MYTABLE
  2
SQL> drop table mytable;

Table dropped.

SQL> --

   
  








Related examples in the same category

1.EXECUTE IMMEDIATE commands
2.Execute immediate for an insert statement
3.Use EXECUTE IMMEDIATE to call procedure and save the returning value
4.Use execute immediate to insert random numbers
5.execute immediate with 'insert ... using' to pass variable into insert statement
6.Timing Bind variable
7.Call 'execute immediate' to drop table, create table and insert data
8.EXECUTE IMMEDIATE
9.Pass value out of dynamic select statement
10.Build up the CREATE TABLE statement and run it with EXECUTE IMMEDIATE
11.Use USING clause with EXECUTE IMMEDIATE to handle bind variables.
12.Use of EXECUTE IMMEDIATE for single-row queries.
13.Create Dynamic Tables
14.Call a stored procedure in dynamic script
15.demonstrates the effect of duplicate placeholders with EXECUTE IMMEDIATE.
16.how to pass a NULL value to EXECUTE IMMEDIATE.
17.Use native dynamic SQL to re-create MyTable.
18.Use DBMS_SQL to re-create MyTable.
19.execute immediate using variable
20.Create dynamic sql statement and get the result
21.Dynamically create packages
22.Use execute immediate to create dynamic query in a procedure
23.Performance between using statement and string concatenation for dynamic sql