I wanted to be able to run thousands of queries or hundreds from Postgres like I can in MS Access this didn’t turn out to be too difficult.
Here’s something that works firstly lets create a new database
1 | CREATE DATABASE sqlloopdb; |
You will then need to connect to the database.
Next I will create 2 tables with; One table to be called t001sqltarget – this is the table we shall change with queries. One table called t002sqlrun – this will contain queries that we will run.
Please note the field names are important as well but I will let you study them in the code.
I then have 4 inserts that place valid SQL strings into the field sqltorun.
1 2 3 4 5 6 | CREATE TABLE t001sqltarget (pkid serial primary key , fieldforupdate varchar (1)); CREATE TABLE t002sqlrun (pkid serial primary key , sqltorun varchar (1000)); INSERT INTO t002sqlrun(sqltorun) values ( 'INSERT INTO t001sqltarget(fieldforupdate) values (1);' ); INSERT INTO t002sqlrun(sqltorun) values ( 'INSERT INTO t001sqltarget(fieldforupdate) values (2);' ); INSERT INTO t002sqlrun(sqltorun) values ( 'INSERT INTO t001sqltarget(fieldforupdate) values (3);' ); INSERT INTO t002sqlrun(sqltorun) values ( 'INSERT INTO t001sqltarget(fieldforupdate) values (4);' ); |
First lets run the above and see what we have. Below you can see that I create the database then connect to it before opening the editor from which I run the above code I then take a look at the tables in the database and run a select to return all the records within the t001sqltarget table of which there are none.
Now lets run the following code and then take a look at t001sqltarget.
1 2 3 4 5 6 7 8 9 10 11 12 13 | DO LANGUAGE plpgsql $$ DECLARE stmt text; BEGIN FOR stmt IN SELECT sqltorun FROM t002sqlrun LOOP EXECUTE stmt; END LOOP; END ; $$; |
And after running there are 4 lines in the table
Every time I run the Do code four more records will be added to this table. Any SQL could be included in t002sqlrun and this is a nice demonstration of what I had previously able to do in MS Access and is massively powerful. It could be used for instance to calculate multiple measurements.