Can we use "Contains" and "NotContains" methods in SQL i.e., How do I check if a string or a column value is contained in another column of a table.
Problem Statement:
- How do I check if a string "ABC" is contained/Not contained in "Column1"
- How do I check if a "Column1" value is contained/Not contained in "Column2"
If not SQL can we use JavaScript UDF or any other means to make this happen?