怎么批量删除表里的多条数据

如题所述

(access数据库为例)单条删除的sql语句:
delete * from 数据库表 where id = 1
删除id为1的数据
delete * from 数据库表 where id in (1,2,3,4,5,6)
删除id为1、2、3、4、5、6的数据
温馨提示:答案为网友推荐,仅供参考