很奇怪的UPDATE 问题 (大家帮看看 在线等)
update testinfo set projectname= "123 "and testpeoplename= "456 "where projectname= "30 "
在ACCESS 数据库执行时 把 projectname= "30 " 的记录都改成了 projectname= "0 " 了 testpeoplename的值 不变
这是怎么回事呀??
[解决办法]
肯定是你长像问题。。。
[解决办法]
update testinfo set projectname= "123 "and testpeoplename= "456 "where projectname= "30 "
^^^
中间应当用逗号!
[解决办法]
update testinfo set projectname= "123 ", testpeoplename= "456 "where projectname= "30 "