Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DO $$
- DECLARE
- film_id INT := 10;
- store_id INT := 1;
- out_total INT;
- BEGIN
- CALL total_filme_loja(film_id, store_id, out_total);
- RAISE NOTICE 'Filme % possui % itens em estoque na loja %', film_id, out_total, store_id;
- END;
- $$
Advertisement
Add Comment
Please, Sign In to add comment