Is it possible to compare two strings and find values not present in both? For example,
String 1: [email protected] [email protected]
String 2: [email protected] [email protected] [email protected] [email protected]
Result: [email protected]; [email protected]
Is it possible to use NOT IN or NOT EXISTS to capture those values.
Thanks for any direction.
NOT INandNOT EXISTSdo not do what you want at the string level.