sql = "select*from 表1 where 字段1=✀"&temp&"✀" 这个句子错在哪了?

2025-01-20 18:37:38
推荐回答(3个)
回答1:

select*from 这里少了空格了,你试试下面的:
sql = "select * from 表1 where 字段1='"&temp&"'"

回答2:

注意SQL语句的格式

select * from 表1 where 字段1 = '" & temp & "'"

如果你的 字段1 是数值型,SQL如下

select * from 表1 where 字段1 = " & temp

回答3:

sql = "select*from 表1 where 字段1="&temp

你试试这样看看能不能行