In SQL Server 2016, I get this error with the STRING_SPLIT function
SELECT * FROM STRING_SPLIT('a,b,c',',')
Error:
Invalid object name STRING_SPLIT.
Verify Database Compatibility Level 130
you can use the following query to change it:
ALTER DATABASE [DatabaseName] SET COMPATIBILITY_LEVEL = 130
I used Split_stringthat in grammar correct in English, but my old eyes did not see what it should be STRING_SPLIT... so if you are a little mental STRING_SPLITlike me, then check that you typed the command correctly! :)
Split_string
STRING_SPLIT
Source: https://habr.com/ru/post/1689009/More articles:Setting input month value - javascriptChange the current list by adding the item - Haskell 101 - immutabilityWhy is opencv dnn slower if I use Halide? - opencvintrinsically safe server does not clean files randomly - shuffleHow does std :: future affect the lifetime of an associated std :: packaged_task? - c ++Priorities in Java threads - javaHow to add a link to a list in material-ui 1.0? - material-uiMacro extension using the ## - c operatorHttpClient не может разобрать пустой ответ - angularMerging two arrays of dictionaries in javascript - javascriptAll Articles