我在Microsoft访问时遇到问题。当我尝试将该值与子表单中的所有值进行比较时,它始终显示错误3061:too few parameters expected 1.
这是我的代码:
CurrentDb.Execute "Delete from clubs " & _
" WHERE club_name =" & Me.subClubForms.Form.Recordset.Fields("club_name")
答案 0 :(得分:0)
我认为club_name
是一个TEXT字段,然后你必须按字符串过滤:
" WHERE club_name ='" & Me.subClubForms.Form.Recordset.Fields("club_name").Value & "'"