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

Syntaxe incorrecte près de 'PROCEDURE' postgresql

Avec Postgres 10, vous devez utiliser une fonction :

CREATE function insert_data(a integer, b integer)
  returns void
LANGUAGE SQL
AS $$
   INSERT INTO tbl VALUES (a), (b);
$$;