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

MySql - Aktualizuj tabelę za pomocą instrukcji Select z tej samej tabeli

update table as t1
inner join (
select field_id_46,field_id_47 from table where entry_id = 36) as t2
set t1.field_id_60 = t2.field_id_46,
    t1.field_id_61 = t2.field_id_47
where t1.entry_id = 45

lub po prostu

update table as t1,
(
select field_id_46,field_id_47 from table where entry_id = 36) as t2
set t1.field_id_60 = t2.field_id_46,
    t1.field_id_61 = t2.field_id_47
where t1.entry_id = 45


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Wybór MySQL z warunkiem CONCAT

  2. jqGrid - Unikalny identyfikator dla nowego wiersza

  3. Mysql Wybierz wiersze, w których dwie kolumny nie mają tej samej wartości

  4. Mysql Query ze zmienną mysql nie działa w Zend Framework 1

  5. Wybór wpisów według daty ->=NOW(), MySQL