| 两侧同时换到之前的修订记录前一修订版 | |
| zh:常见问题及解答:如何批量删除导入_导出任务列表数据 [2015/09/06 06:16] – liuxl | zh:常见问题及解答:如何批量删除导入_导出任务列表数据 [2015/09/06 06:19] (当前版本) – liuxl |
|---|
| 在系统页面中,你可以看到"执行时间"一列,如下图: | 在系统页面中,你可以看到"执行时间"一列,如下图: |
| |
| | {{:zh:常见问题及解答:导出文件管理01.png?750|}} |
| |
| | 你可以根据"执行时间"来删除列表数据,如:删除 2015-03-03 09:57:00 到 2015-04-03 12:34:00 执行的数据,执行如下命令: |
| |
| 假如你需要删除ID从1到3000的列表数据,你可以执行如下命令: | <code> delete from cc10_shellexports where exetime>='2015-03-03 09:57:00' and exetime<='2015-04-03 12:34:00'; </code> |
| | |
| <code> delete from cc10_shellimports where id>=1 and id<=3000; </code> | |
| | |
| 当然,你也可以根据"执行时间"来删除列表数据,如:删除 2015-03-03 09:57:00 到 2015-04-03 12:34:00 执行的数据,执行如下命令: | |
| | |
| <code> delete from cc10_shellimports where exetime>='2015-03-03 09:57:00' and exetime<='2015-04-03 12:34:00'; </code> | |
| |
| 或者 | 或者 |
| |
| <code> delete from cc10_shellimports where exetime between '2015-03-03 09:57:00' and '2015-04-03 12:34:00'; </code> | <code> delete from cc10_shellimports where exetime between '2015-03-03 09:57:00' and '2015-04-03 12:34:00'; </code> |
| |
| |
| |
| |
| |
| |
| |
| ==== 录音文件导出 ==== | ==== 录音文件导出 ==== |
| |
| | 方法同以上:《导出文件列表》 |
| |
| |