sql >> Base de Datos >  >> RDS >> PostgreSQL

¿Cómo ejecutar el script pgsql en pgAdmin?

aparte de Respuesta de Clodoaldo Neto .Puedes probar esto también

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