HostedRedmine.com has moved to the Planio platform. All logins and passwords remained the same. All users will be able to login and use Redmine just as before. Read more...
update select
Technical documentation
2015-02-06
*UPDATE Table1 t1
SET Value = t2.Value
FROM Table2 t2
where t2.ID = t1.ID
จะ update หลาย rows หลาย value ตาม FROM Table2 t2 *
ห้ามใช้UPDATE Table1
SET Value = t2.Value
FROM Table1 t1
INNER JOIN Table2 t2 on t2.ID = t1.ID
จะ update หลาย rows เฉพาะ value แรก ที่ join value เดียว ซึ่งไม่ถูกต้อง