สอบถามการ Update ใน Mysql ครับ
ต้องการ Update ใน Mysql ซึ่งมีข้อมูลที่เหมือนกันแต่ถ้าไม่เหมือนกันให้ใส่เป็นค่าอื่นครับ เช่น
Table: Test
Column: Field1 Field2 Field3
A 1 1
B 2 2
C 3 3
E 5 5
---------------------------------------------
Table: Test1
Column: TestA TestB TestC
A 11 11
B 22 22
C 33 33
D 55 55
----------------------------------------------
Result:
Table: Test
Column: Field1 Field2 Field3
A 11 11
B 22 22
C 33 33
** E 8 8
ขอบคุณครับ
update test,test1
set test.field2=???? , test.field3=?????
where test.field1 = test.field1
and ( test.field2<>test1.field2 or test.field3<>test1.field3)