asp中如何把一个表中的一个字段的数据取出组成一个字符串???谢谢!! 50

<%pk=request("pk")''主键''********修改时先添好被修改信息.***************setrs=Server.CreateObject(... <%
pk = request("pk") ''主键

''********修改时先添好被修改信息.***************
set rs=Server.CreateObject("Adodb.Recordset")
sql="select * from VIEW3 where ID="& pk
rs.open sql,conn,1,1
if rs.eof then
salert "数据库出错!!"
response.end
else
title = rs("title")
content = rs("content")
receiver = rs("receiver")
sender = rs("sender")
Expr1 = rs("Expr1")
tdate = rs("tdate")

end if

conn.execute("update admininforms set lookname=lookname+'"&rs("receiver")&"'+'||' where icaption='"&rs("title")&"' and icontent='"&rs("content")&"' and iman='"&rs("sender")&"'")
conn.execute("delete from remind where id=" & pk)

rs.close
set rs = nothing
%>
我想在执行完delete后,再加一个update,条件是:
把VIEW3表中(title,content,sender,tdate)的内容和上边delete的那条数据的(title,content,sender,tdate)相同的数据的receiver字段的内容取出用逗号隔开并组成一个字符串!
组成的字符串写到前边的update的那条数据的nolookname字段里!
也就是:
conn.execute("update admininforms set nolookname = 组成的字符串 where icaption='"&rs("title")&"' and icontent='"&rs("content")&"' and iman='"&rs("sender")&"'")
主要是怎么把数据取出并组成字符串!!!!

我想要的是这样的:例如:
A表
id name
1 王二
2 张三
3 李六
组成一个字符串:王二,张三,李六
展开
 我来答
张小刚爱生活
2009-05-08 · TA获得超过1025个赞
知道大有可为答主
回答量:2140
采纳率:100%
帮助的人:548万
展开全部
搂主写的有点儿乱,本来想回答

conn.execute("update admininforms set nolookname = '" & name & "," & name1 & "' where icaption='"&rs("title")&"' and icontent='"&rs("content")&"' and iman='"&rs("sender")&"'")
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百分百考试网
2009-05-08 · TA获得超过783个赞
知道小有建树答主
回答量:308
采纳率:0%
帮助的人:217万
展开全部
用concat,例如
sub concatDemo()
dim str1 = "ABCDEFGHIJKLM"
dim str2 = "NOPQRSTUVWXYZ";
dim s = str1.concat(str2);
// 返回连接好的字符串。
return(s);
end sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式