Mysql - 从表中删除所有post_id1的2行除外

时间:2015-08-25 04:06:56

标签: mysql

我有一个表ABC,其中有1百万+行:

post_id1    post_id2    count
    22      100218      1
    22      100225      2
    22      100432      1
    22      100719      5
    22      100807      4
    22      100827      3
    22      100934      22
    22      101322      1
    27      101613      10
    27      101931      1
    29      103783      1
    29      104328      16
    29      104345      1
    29      104356      7

在这个表中,我只想保留每个post_id1值(任意两行)的两行

类似输出

post_id1    post_id2    count
    22      100218      1
    22      100225      2
    27      101613      10
    27      101931      1
    29      103783      1
    29      104328      16

我应该运行什么SQL查询?

post_id1可以是任意数字。

由于

0 个答案:

没有答案