Hello good day I have 2 tables that I show in the following image
I used this query
select a.rpu from costas a left join
referencia b on b.rpu_ref = a.rpu where b.rpu_ref is null
To have the result of search that the table that rpu reference is not equal and I get this result
What I want to do is not just leave the rpu field but also the name field that is in the reference table.
Thanks