这里会显示出您选择的修订版和当前版本之间的差别。
| 两侧同时换到之前的修订记录 前一修订版 后一修订版 | 前一修订版 | ||
|
zh:常见问题及解答:如何批量删除导入_导出任务列表数据 [2015/09/06 06:16] liuxl |
zh:常见问题及解答:如何批量删除导入_导出任务列表数据 [2017/12/12 03:05] (当前版本) |
||
|---|---|---|---|
| 行 68: | 行 68: | ||
| 在系统页面中,你可以看到"执行时间"一列,如下图: | 在系统页面中,你可以看到"执行时间"一列,如下图: | ||
| + | {{: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> | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| ==== 录音文件导出 ==== | ==== 录音文件导出 ==== | ||
| + | 方法同以上:《导出文件列表》 | ||