Posts by pIO • 1 point
2 posts
-
0
votes1
answer62
viewsA: How to insert a constant in a PL/SQL line?
with atores(nome, tipo) as (select nome, case when 1=1 then 'Ator' end as tipo from representa inner join artistas using(n_artista)) ,realizadores(nome, tipo) as (select nome, case when 1=1 then…
-
0
votes1
answer62
viewsQ: How to insert a constant in a PL/SQL line?
Hello, I’m having some difficulties in data presentation. with atores(nome, data_nasc) as (select nome, data_nasc from representa inner join artistas using(n_artista)) ,realizadores(nome, data_nasc)…