jasonsalas
IS-IT--Management
Does SQL Server have a built-in function like SUM() or COALESCE() that can accept a delimited string of some sort whwrein I can pass multiple values?
For instance, if I have 60 form elements on a webpage, can I set the form elements to a single comma-delimited string (or other delimiting character) and pass this onto some system function inherent to SQL Server, instead of doing something like this:
INSERT INTO TableName VALUES (val1,val2,val3,val4...valN)
For instance, if I have 60 form elements on a webpage, can I set the form elements to a single comma-delimited string (or other delimiting character) and pass this onto some system function inherent to SQL Server, instead of doing something like this:
INSERT INTO TableName VALUES (val1,val2,val3,val4...valN)