PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

como executar o script pgsql no pgAdmin?


além da Resposta de Clodoaldo Neto .Você pode tentar isso também
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
$$