数据库中已存在名为 '#T1' 的对象

数据库中已存在名为 '#T1' 的对象,第1张

如果你黏贴时代有

IF OBJECT_ID('tempdb.dbo.#T1') IS NOT NULL DROP TABLE #T1

IF OBJECT_ID('tempdb.dbo.#T2') IS NOT NULL DROP TABLE #T2

应该也不会有问题

<%

dim SQL

select case request.form("city")

case "0"

'显示指定的ID=1,name和TT的数据

SQL="select * from mobile where id='"&request.form("city")&"'"

case "1"

SQL="select * from mobile where id='"&request.form("city")&"'"

end select

set rs=server.CreateObject("adodb.recordset")

rs.open sql,db,1,1

if not rs.eof then

response.write rs("name")&" "&rs("name")

set rs=nothing

end if

%>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9679051.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存