asp 处理access删除数据库记录:delete * from table where id=1,2 为什么总是提示错误?
来源:互联网
asp 处理access删除数据库记录:delete * from table where id=1,2 为什么总是提示错误?改成delete from table where id=1,2 依然有错,但是改成:delete from table where id=1 就好了,请问什么原因???
asp 处理access删除数据库记录:delete * from tab