I have an assoc table containing columns
local_id, remote_id, cachedData
I can successfully run a SQLITE query that looks like
SELECT a1.local_id, a1.remote_id FROM assoc a1 LEFT JOIN ....
to identify specific rows in the assoc table that match my criteria.
What I would like to do is set cachedData to null in these lines.
How can i do this? Sqlite does not support UPDATE with joins; you can issue subqueries, but I cannot figure out how to get the syntax correctly; It seems uninteresting to me.
sql join sqlite
Jason S Jan 07 2018-11-11T00: 00Z
source share