I'm using Postgres, and I have a large number of rows that need to be inserted into the database, that differ only in terms of an integer that is incremented. Forgive what may be a silly question, but I'm not much of a database guru. Is it possible to directly enter a SQL query that will use a loop to programatically insert the rows?
Example in pseudo-code of what I'm trying to do:
for i in 1..10000000 LOOP
INSERT INTO articles VALUES(i)
end loop;