I want to split below one input parameter in stored procedure
@input varchar(Max)= ‘1~100~101~103,2~200~201~203,3~300~301~303, 4~400~401~403’ like below
1 100
1 101
1 103
2 200
2 201
2 203
3 300
3 301
3 303
4 400
4 401
4 403
New contributor
Krishna is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.