You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 12, 2020. It is now read-only.
select Jogador.id as jogadorid ,Plataforma.nome,Plataforma.id
from Jogador, JogoJogador, JogoPlataforma,Plataforma
where Jogador.idade <= 12 and Jogador.id = JogoJogador.jogadorID and JogoJogador.jogoID = JogoPlataforma.jogoID and premium = 'true' and JogoPlataforma.platID = Plataforma.id;
select nome, count(distinct jogadorid) as "Numero de jogadores premium com idade <= 12"