Access数据库代码错误“语法错误(操作符丢失)在查询表达式✀读者号=✀中。”怎么修改?

2024-11-23 02:29:44
推荐回答(1个)
回答1:

将这一句:
strsql = "select*from 借还书表 where 读者号=" '&rid&'"and 书号="'&bid&'""
改为:
strsql = "select * from 借还书表 where 读者号='" & rid & "' and 书号='" & bid & "'"