我在数据库中有大约30 000条记录,我必须为这些创建10个cron作业:
job 1 fetches records where column `id` is 0,10,20,30, etc. job 2 fetches records where column `id` is 1,11,21,31, etc.
等等。
我该如何处理?
答案 0 :(得分:5)
select * from your_table
where id % 10 = 1
获取1,11,21,31,...
等等。和
where id % 10 = 2
代表2,12,22,32,...
。