Permissão = {{1,'Administrativo'},{2,'Usuário'},{3,'Colaborador'}}
Pessoa = {{1,'João'},{2,'Mario'},{3,'Maria'}}
Pessoa_Permissão = {{1,1,1},{2,1,3},{3,1,2},{4,2,2},{5,3,3}}
I need to return the users who do not have the employee permission (3) when executing the query.
Thank you in advance.
Update
I need the query to return the name and id of the person (id_id, name). Below is the current status of my attempts.
select p.pessoa_id, p.nome
from pessoa p
join pessoa_permissão pes on pes.pessoa_id = p.pessoa_id
where pes.permissao_id <> 3;