Mysql
 sql >> Database >  >> RDS >> Mysql

Come faccio a selezionare casualmente coppie di righe uniche da una tabella?

select a.id, b.id
from people1 a
inner join people1 b on a.id < b.id
where not exists (
    select *
    from pairs1 c
    where c.person_a_id = a.id
      and c.person_b_id = b.id)
order by a.id * rand()
limit 1;

Limit 1 restituisce solo una coppia se stai "estraendo a sorte" una alla volta. In caso contrario, aumenta il limite fino al numero di paia di cui hai bisogno.

La query precedente presuppone che tu possa ottenere

1 - 2
2 - 7

e che l'abbinamento 2 - 7 è valido poiché non esiste, anche se 2 è di nuovo presente. Se vuoi che solo una persona compaia in only one accoppiare mai, quindi

select a.id, b.id
from people1 a
inner join people1 b on a.id < b.id
where not exists (
    select *
    from pairs1 c
    where c.person_a_id in (a.id, b.id))
  and not exists (
    select *
    from pairs1 c
    where c.person_b_id in (a.id, b.id))
order by a.id * rand()
limit 1;

Se multiple pairs devono essere generati in una singola query, AND la tabella di destinazione è ancora vuota, puoi utilizzare questa singola query. Tieni presente che LIMIT 6 restituisce solo 3 paia.

select min(a) a, min(b) b
from
(
    select
      case when mod(@p,2) = 1 then id end a,
      case when mod(@p,2) = 0 then id end b,
      @p:[email protected]+1 grp
    from (
        select id
        from (select @p:=1) p, people1
        order by rand()
        limit 6
    ) x
) y
group by floor(grp/2)