求SQL批量修改表里字段!!!
发布网友
发布时间:2022-04-11 17:58
我来回答
共3个回答
热心网友
时间:2022-04-11 19:27
很简单的你基本全对了。
update special set info= 'http://www.123.com/图片地址' where intro like '%图片地址%'
热心网友
时间:2022-04-11 20:45
写一段程序,读取数据集(aspx)
DataTable mytb=....想办法读取表中的数据
for(int i=0;i<mytb.Rows.Count;i++)
{
string newValue=mytb.Rows[i]["info"].Replace("图片地址","...");
updatesql="update special set into='"+newValue+"' where id=mytb.Rows[i]["ID"]"
执行updatesql
}
热心网友
时间:2022-04-11 22:20
update special set info= 'http://www.123.com/图片地址' where info like '%图片地址%'