PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

comment exécuter le script pgsql dans pgAdmin ?

à part Réponse de Clodoaldo Neto .Vous pouvez également essayer ceci

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
$$