In procedural SQL, I could write a loop that used an incrementing variable to build data rows and insert them into a table one by one. Is there a way to get the same effect using the regular SQL syntax supported by CockroachDB? I don't want to have to programatically build a
INSERT INTO ... VALUES ( ... )
statement, or run many inserts in a loop outside of database code.