我可以访问名为 road.mdb 的数据库。在 road.mdb 中,我有一个链接的 SQL 表,
表名为 student。
我可以在 MSAccess 中使用查询设计插入记录
但我不能更新也不能删除
在下面运行删除查询时,错误是:无法从指定表中删除
delete from student where studentid=303;
当我在下面运行更新查询时,错误是:操作必须使用可更新查询
update student set Name='BOB' where studentid= 303;
我拥有对 sql 数据库的完全访问权限,并且可以使用 sql management studio 运行查询 OK。使用 MSaccess 中的查询设计是否无法删除和更新?奇怪的是我可以在 MSaccess 中使用查询设计插入新记录
谢谢你