I cannot use STRING_SPLIT
in my version of SQL Server (I got
Valid values of the database compatibility level are 80, 90, or 100
-When I tried to set it to 130). I have a simple input variable coming from my ASP.Net app.
@Keyword nvarchar(50)
It could be a single word, like 'flood' or it could be a semi-colon separated group of words, like 'flood; damage'. I need to separate each word to run in the rest of my script. How would I do this without using STRING_SPLIT
?