ACCESS中的字符串值加上一个字符串的SQL语句怎么写?

如:
classlist="字符串"

"update table set classlist=classlist+'"&classlist&"' where id=1"

可是这样写字符串的值加不起来,帮帮忙该怎么写呢?
classlist是ASP程序中的一个变量,在语句中只能以&&来连接,不好意思,没有说清楚,谢谢yinaje,但是你的答案不是我需要的

干脆我把代码全贴上来吧
<!--#include file="Conn.asp"-->
<%
dim int1,int2,str3,str1,i,trs
int1=int("5")
int2=int("7")
str3="字符串"
AConnOpen
str1=","&cstr(int1)&","&cstr(int2)&","&str3&"|"
for i=0 to 10
AConn.execute("update goods1 set goods_count=goods_count + '" & str1 & "' where goods_id=3649")
next
set trs=AConn.execute("select goods_count from goods1 where goods_id=3649")
response.write trs("goods_count")
%>
最新回答
趁年华

2024-10-17 11:43:36

'classlist'

update table set classlist=classlist+'&classlist&' where id=1
你加上&这个符号,例如classlist = 001,那么执行后,就是 001&classlist& 这个值了。
&放在单引号中就是一个字符了,而不是与了
颓废美堕落情

2024-10-17 08:07:27

("update goods1 set goods_count=goods_count + " & str1 & " where goods_id=3649"

数字型变量相加,不能加单引号
贴心小棉袄

2024-10-17 08:07:18

'''classlist'''