UPDATE with a FROM clause _:: Postgres also allows "UPDATE ... FROM ... ", BTW. (As does Ingres --CAU) _:: I was working on something where I really wanted to use this construct with SQLite, so I came up with the following hack: -- -- SQLite does not allow "UPDATE ... FROM" -- but this is what it might look like -- UPDATE t1 SET measure = t2.measure FROM t2, t1 WHERE t2.key = t1.key ; -- -- emulating "UPDATE ... FROM" in SQLite -- -- n.b.: it assumes a PRIMARY KEY ! -- -- the INSERT never succeeds because -- the JOIN restricts the SELECT to -- existing rows, forcing the REPLACE -- INSERT OR REPLACE INTO t1( key, measure ) SELECT t2.key, t2.measure FROM t2, t1 WHERE t2.key = t1.key ; _:: Since that works, maybe SQLite could be made to support the "UPDATE ... FROM" construct directly, so we would not have to rely on conflict resolution to do essentially the same thing (not exactly the same, since REPLACE is DELETE and INSERT, but sometimes close enough). *< gifford hesketh::2004- Oct-26* _:: I've managed successfully to do this an alternative way, works in version 3.2.1 (--CAU:18-Aug -2005) ... -- -- emulating "UPDATE ... FROM" in SQLite -- -- UPDATE t1 SET measure = ( SELECT measure FROM t2 WHERE t2.key = t1.key ) ; _:: But be very careful with this code! The original joined update would only update where a record is found with the key in both tables. This, on the other hand, will update everything in t1, setting measure to NULL if there isn't a record in t2. *TJH:2006-03-24* _:: A variation on this theme so your measure will not be set to NULL if there is no data. *robewald:2007-02-19*: -- -- emulating "UPDATE ... FROM" in SQLite -- -- UPDATE t1 SET measure = ( SELECT measure FROM t2 WHERE t2.key = t1.key ) WHERE t1.key = ( SELECT key FROM t2 WHERE t2.key=t1.key) ; {linebreak} *Kamil:2007-02-22*{linebreak} or something like that that is more clearer to understand for me:{linebreak} UPDATE t1{linebreak} SET measure = ( SELECT measure FROM t2 WHERE t2.key =t1.key ){linebreak} WHERE EXISTS (SELECT * FROM t2 WHERE t2.key=t1.key);{linebreak}