A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
That is just a warning from Intelisense in SSMS. It can be ignored. I hope it gets fixed soon.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I am trying to insert a string results into a temp table using the following
create table #Temp
(
sku nvarchar(400)
)
insert #Temp(sku)
SELECT value
from STRING_SPLIT (@sku2, ',')
However I am getting the following error when I highlight string_split - an insufficient nummber of arguments where supplied for for the function String_split .
Thanks
Chris
A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
Additional SQL Server features and topics not covered by specific categories
Answer accepted by question author
That is just a warning from Intelisense in SSMS. It can be ignored. I hope it gets fixed soon.
Thanks, it seems to be because it was reading the variable in.. it was a intellisense issue.
Thanks
Chris