I’m trying to load a table based on the next block:
BEGIN
FOR counter in CURRENT_DATE to CURRENT_DATE+1000 DO
INSERT INTO myTable AS SELECT counter;
END FOR;
END;
Then I get the next error: Unexpected ‘INTO’.
help
I’m trying to load a table based on the next block:
BEGIN
FOR counter in CURRENT_DATE to CURRENT_DATE+1000 DO
INSERT INTO myTable AS SELECT counter;
END FOR;
END;
Then I get the next error: Unexpected ‘INTO’.
help