Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ===========================
- -- Criação da função
- -- ===========================
- CREATE OR REPLACE FUNCTION get_title_from_id(in_film_id INT)
- RETURNS varchar AS $$
- DECLARE
- v_title varchar;
- BEGIN
- select title into strict v_title from film where film_id = in_film_id;
- return v_title;
- EXCEPTION WHEN no_data_found THEN
- raise exception 'Não existe filme com esse id';
- END; $$ LANGUAGE PLPGSQL;
- -- ===========================
- -- Chamando a função
- -- Teste em outra aba para não dar conflito
- -- ===========================
- select get_title_from_id(-55);
Add Comment
Please, Sign In to add comment