I have a Google Sheet where I can select rows using its query language with its SQL-like queries: "SELECT A WHERE B > whatever", etc. I have now, however, a different column with a list of IDs, and I want to update all the rows that appear in that column. In SQL terms, I'm trying to do something like:
UPDATE sheet SET status='read' WHERE id IN (SELECT ID FROM newcolumn)
(I hope I'm making myself clear).
The question is: can you run instructions like UPDATE, DELETE, INSERT in Google's query language? If not, how can I do this?