获取id为0,10,20,30等的mysql记录

时间:2015-04-08 20:13:17

标签: php mysql

我在数据库中有大约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.

等等。

我该如何处理?

1 个答案:

答案 0 :(得分:5)

使用modulo operator

select * from your_table
where id % 10 = 1

获取1,11,21,31,...等等。和

where id % 10 = 2

代表2,12,22,32,...