select*from 这里少了空格了,你试试下面的:sql = "select * from 表1 where 字段1='"&temp&"'"
注意SQL语句的格式select * from 表1 where 字段1 = '" & temp & "'"如果你的 字段1 是数值型,SQL如下select * from 表1 where 字段1 = " & temp
sql = "select*from 表1 where 字段1="&temp你试试这样看看能不能行