79298320

Date: 2024-12-20 20:21:33
Score: 1
Natty:
Report link

it can use split

DECLARE @intList VARCHAR(200) = '1,3,5,7,3,24,30'
SELECT convert(INT, VALUE) FROM string_split(@intList, ',')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Steven Gomez