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

Comment créer une fonction qui ne renvoie rien

Utilisez RETURNS void comme ci-dessous :

CREATE FUNCTION stamp_user(id int, comment text) RETURNS void AS $$
    #variable_conflict use_variable
    DECLARE
        curtime timestamp := now();
    BEGIN
        UPDATE users SET last_modified = curtime, comment = comment
          WHERE users.id = id;
    END;
$$ LANGUAGE plpgsql;