28,406
社区成员
发帖
与我相关
我的任务
分享
<%
set rs1=server.CreateObject("adodb.recordset")
rs1.open "select city from user_table1 where age>20 group by sex",conn,1,1'////选择出年龄大于20的人员,并且以性别分组
do while not rs1.eof
conn.Execute("drop table #temp,select username,school into #temp from user_table2 where city='"&rs1("city")&"'")'////些句显示在关键字 'select' 附近有语法错误。
......
%>