-3
Assuming an example CUSTOMERS & ORDERS. A customer may or may not have orders, but every order belongs to a customer. To find customers without any request:
select clientes.codigo from clientes
left outer join pedidos
on clientes.codigo = pedidos.cliente
where pedidos.codigo IS null
rationale is that in LEFT JOIN or LEFT OUTER JOIN, all rows of the "left" table appear in the query, but when there are no corresponding rows in the "right" table, the respective columns are "null".
Copies your code and not images, so it’s easier for us to look at your problem
– Gabriel Oliveira