I'm trying to break a string on the basis of words or characters of not same length. I'm using SQL Server 2014 Management Studio.
String ===> 'term1 OR term2'
So I want ti break it based on 'OR' so the result would be
term1
term2
It can also be like this
term3 AND term4
So it would bebroken on the basis of AND giving us the result
term3
term4
STRING_SPLIT()is not available.