Answers for "split string update first value in sql server"

SQL
0

split string update first value in sql server

update df set df.column=s.[value] FROM table df  cross APPLY string_split(REPLACE(column, 'split_parameter', '@') ,'@') s  where column like '%split_parameter%'  and s.[value] not like '=%' 
 #tamilarasan_nallairusun
Posted by: Guest on March-30-2022

Code answers related to "split string update first value in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language