So basically it was given to me a list of around 300 values (numbers).
And i need to modify a parameter for all of them.
I did a basic query (example below) and i only found 270 from this 300 which was given to me.
select count(*) from table where field in('1','2','3','4','5','6');
My question is, how can i see which values (in this case are 30 values) are not present on the table?
This is a live system so i shouldnt create anything there or change.
Thanks for the help in advance.