Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySql - एक ही टेबल से चुनिंदा स्टेटमेंट का उपयोग करके टेबल अपडेट करें

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

या, बस

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. लिनक्स में MySQL या MariaDB रूट पासवर्ड कैसे रीसेट करें

  2. MySQL स्टेटमेंट को निष्पादित होने में मिनट से अधिक समय लगता है

  3. पीडीओ परिणामों में सरणी सूचक को रीसेट करना

  4. क्या एक ही क्वेरी में दो कॉलम गिनना संभव है?

  5. डीबी स्कीमा परिवर्तनों को ट्रैक करने के लिए तंत्र