Actually I have a list of values and I just want to know the ones that doesnt exist on a specific table.
Table 'ball' has values green and red on colunm colors.
Te query to return the registered values is:
Select * from ball where colors in ('green', 'red', 'blue', 'gray')
In this case I need BLUE and GRAY to be returned.
fast edit: I have 5k+ results do compare this way.