Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Exemplo de bloco anonimo com Cursor Implícito
- -- Rodar com a database 'dvdrental'
- DO $$
- DECLARE
- film_record RECORD;
- BEGIN
- FOR film_record IN (
- select title, release_year from film
- )
- LOOP
- raise notice 'Nome do filme: %', film_record.title;
- raise notice 'Ano: %', film_record.release_year;
- END LOOP;
- END; $$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement