ีupdate table1, table2, table3, table4
set table1.field1='', table2.field2='', table3.field3='' table4.field4=''
where table1.bla=table2.bla and table1.bla=table3.bla and table1.bla=table4.bla
หรือถ้าต้องการจะลบ record
ก็ต้องใช้ Code (SQL)
delete table1, table2, table3, table4
from table1, table2, table3, table4
where table1.bla=table2.bla and table1.bla=table3.bla and table1.bla=table4.bla
ถ้า Table เหล่านี้ มี record ที่มี field ชื่อ User มีค่าเท่ากับ 1 จะถูกลบ record นั้น ทิ้ง
จะเหลือแค่ record ที่มีค่า User ไม่เท่ากับ 1 ใน Table เหล่านี้ เท่านั้น
delete table1, table2, table3, table4
from table1, table2, table3, table4
where table1.User=table2.User
and table1.User=table3.User
and table1.User=table4.User
and table1.user=1000
delete from Sys_Users_Detail where UserID=1;
delete from Sys_VIP_Info where UserID=1;
delete from Sys_Users_Texp where UserID=1;
delete from Sys_Users_Card where UserID=1;
delete from Sys_Users_Fight where UserID=1;
delete from DailyLogList where UserID=1;
delete from Sys_User_Gemstone where UserID=1;
delete from Sys_Users_Goods where UserID=1;