Imagine I have this tables:
.
What I need is to get the Data that exists in A but not in B, in this case my SELECT will have to return "2".
I've done it before, but right know I can't remember how. I suppose it was something like this:
SELECT a.*
FROM A as a
LEFT JOIN B AS b ON b.column = a.column
But it's not working. Can someone help me, please?
Thanks in advance.
You're just missing a filter: