Advertisement
Guest User

SQL

a guest
Oct 11th, 2022
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.29 KB | None | 0 0
  1. SELECT my_mv_capabilities( 'select u.nomeusuario, l.nomelivro, a.nomeautor, e.dataemprestimo, e.datadevolucao
  2. from usuario u join emprestimo e
  3. on (u.codusuario = e.codusuario) join livro l
  4. on (e.codlivro = l.codlivro) join autor a
  5. on(l.codautor = a.codautor)', 'REFRESH' ) AS mv_report FROM dual ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement