我这样可以吗?
"select SUM("&xrs("dd")&") as count1 SUM("&xrs("ee")&") as count2 from content where code="&rs("code")&""
为什么显示不出来呢?
ASP
------解决方案--------------------
"select SUM("&xrs("dd")&") as count1,SUM("&xrs("ee")&") as count2 from content where code="&rs("code")&""
在中间加逗号
------解决方案--------------------
版主不是说少了个逗号吗
dim SQL:SQL="select SUM("&xrs("dd")&") as count1,SUM("&xrs("ee")&") as count2 from content where code='"&rs("code")&"'"
response.write wrs("count1")
这样输出的是结果集中的count1列值
但用<%= count1%>就不可以.这是为什么呢
这样输出是是变量count1的值