PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

come eseguire lo script pgsql in pgAdmin?

a parte Risposta di Clodoaldo Neto .Puoi provare anche questo

DO
$$
BEGIN
 FOR i IN 1..10 LOOP
       RAISE NOTICE '%', i; -- i will take on the values 1,2,3,4,5,6,7,8,9,10 within the loop
 END LOOP;
END
$$