Mysql
 sql >> Baza danych >  >> RDS >> Mysql

mysql - AKTUALIZACJA wiersza na podstawie innych wierszy

Jasne, możesz to zrobić w jednym zapytaniu. Korzystając z tej przykładowej tabeli:

create table duotri (time varchar(100), type int, genre int, doubles int, triples int);
insert duotri values
('2010.06.21 12:00'    ,1        ,1        ,0            ,0),
('2010.06.21 12:00'    ,1        ,2        ,0            ,0),
('2010.06.21 12:00'    ,1        ,1        ,0            ,0),
('2010.06.21 12:00'    ,2        ,3        ,0            ,0),
('2010.06.22 12:00'    ,2        ,2        ,0            ,0),
('2010.06.22 12:00'    ,2        ,3        ,0            ,0),
('2010.06.22 12:00'    ,1        ,1        ,0            ,0);

Instrukcja aktualizacji powinna dołączyć do formularza ZGRUPOWANE, aby uzyskać podwójne i potrójne.

update duotri t1
inner join (
    select time, type,
     case when count(distinct genre) = 2 then 1 else 0 end doubles,
     case when count(distinct genre) = 3 then 1 else 0 end triples
    from duotri
    group by time, type) t2
   on t1.time=t2.time and t1.type=t2.type
set t1.doubles=t2.doubles, t1.triples = t2.triples;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak działa funkcja EXPORT_SET() w MySQL

  2. Jak pobrać listę tabel w bazie danych w Laravel 5.1?

  3. Importowanie bazy danych MySQL z jednego serwera na drugi

  4. ROW_NUMBER() w MySQL

  5. MYSQL wyłącz automatyczne przycinanie