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

Riordinamento dei dati delle colonne in mysql

Se il numero di modifiche è piuttosto piccolo, puoi generare un'istruzione UPDATE goffa ma piuttosto efficiente se conosci gli ID degli elementi coinvolti:

UPDATE categories
JOIN (
    SELECT 2 as categoryID, 3 as new_order
    UNION ALL
    SELECT 3 as categoryID, 4 as new_order
    UNION ALL
    SELECT 4 as categoryID, 2 as new_order) orders
USING (categoryId)
SET `order` = new_order;

oppure (che mi piace di meno):

UPDATE categories
SET `order` = ELT (FIND_IN_SET (categoryID, '2,3,4'),
                   3, 4, 2)
WHERE categoryID in (2,3,4);

UPD :

Supponendo che tu conosca l'id corrente della categoria (o il suo nome), la sua vecchia posizione e la sua nuova posizione puoi usare la query seguente per spostare una categoria in basso nell'elenco (per spostarti in alto dovrai cambiare il between condizione e new_rank calcolo a rank+1 ):

SET @id:=2, @cur_rank:=2, @new_rank:=4;

UPDATE t1
JOIN (
  SELECT categoryID, (rank - 1) as new_rank
  FROM t1
  WHERE rank between @cur_rank + 1 AND @new_rank
  UNION ALL
  SELECT @id as categoryID, @new_rank as new_rank
) as r
USING (categoryID)
SET rank = new_rank;