我有如下字符串:
string s; //reading from front end like s='color'
string s1; //reading from front end like s1='prototype'
string str=s+","+s1;
所以str="color,prototype"
并且字符串str
可以包含许多字符串,例如str="color,prototype,niranjan,cloud";
我想将它发送到数据库并根据以下行将其插入表中:
id value
1 color
2 prototye
3 niranjan
4 cloud
于是一个存储过程或查询就找到了上面的要求。