更新和删除查询不起作用

更新和删除查询不起作用

本文介绍了更新和删除查询不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我是VB.NET的新手.我有一个MS Access数据库,并且我的Update和Delete查询无法正常运行.

这些是我现在有的查询.

更新

Hello,

I am new to VB.NET. I have an MS Access database and my Update and Delete queries do not work as I expect them to.

These are the queries I have now.

Update

Update Emp Set name="Project" Where no = 2;



删除



Delete

Delete From Emp Where no=1;



请帮我.我知道这是VB.NET/Access中非常基本的内容,但我不知道下一步该怎么做.



Please help me. I know this is very basic stuff in VB.NET/Access but I don''t know what to do next.

推荐答案



Update Emp Set name='Project' Where no = 2;


这篇关于更新和删除查询不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 20:45