好久没用asp了,好多都忘记了。三句删除语句都说我错了"delete guest where idd = "&idd&"""delete guest where idd = '"&idd&"'""delete guest where idd = &idd&"其中idd在数据库中是自动编号的数据类型,数字型的在where语句中该怎么使用啊
參考答案:对 在SQL中可以省略“from ”不写,但我在ASP中,只要不写FORM就出错。
另外"idd" & idd & ""
事实上后面的 & "" 就等于什么也没加,不如直接写成
"delete from guest where idd="&idd
等效的。