How to execute an SQL string in DB2

2019-02-19 04:41发布

问题:

How do I execute an SQL string statement in DB2? I'm using IBM Data Studio.

回答1:

Do you mean executing a dynamic SQL string? Something like:

DECLARE stmt VARCHAR(1000);
DECLARE my_table VARCHAR(50);
SET my_table = 'DEPT_'||deptNumber;
SET stmt = 'SELECT * FROM '||my_table;
PREPARE s1 FROM stmt;
EXECUTE s1;

You can only do that in a stored proc though. One defined as CREATE PROCEDURE GetDeptInfo (deptNumber VARCHAR(5)) for this example. Read about EXECUTE and PREPARE in the db2 docs http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/index.jsp



回答2:

After days of researching I found how to write and run dynamic SQL on DB2:

create or replace procedure Search ()

    BEGIN

       DECLARE v_dynamicSql varchar(2000);
       SET v_dynamicSql = 'INSERT INTO dictonary(name) values(' || 'dynamicSQL in db2' ||')';

       EXECUTE IMMEDIATE v_dynamicSql;

    END;

Hope to help someone.



回答3:

What difficulty are you encountering?

There are likely lots of ways to do it. Here's one:

File -> New -> Other -> SQL or XQuery script

You may need to create a project or define a database connection.

Enter the SQL code.

Script -> Run script.

Results will show up at the bottom of your screen.



回答4:

In Control Center, right click the database, you will see "Query". Click on it and you are good to go.



标签: db2