Lines Matching refs:where
50 update t0 set x=3 where x=1;
61 sqlite3_exec_printf db {update t0 set x=4 where x=3; select 1;} {}
67 execsql {update t0 set x=3 where x=4}
69 update t0 set x=x+changes() where x=3;
70 select count() from t0 where x=8;
74 # changes() set properly after update on table where no rows changed
77 update t0 set x=77 where x=88;
85 delete from t0 where x=2;
153 delete from t0 where oid=1 or oid=2;
233 update t0 set x=x*10 where x=1;
237 update t0 set x=x*10 where x=0;
245 update t0 set x=x*100 where x=0;
247 delete from t0 where x=2;
257 delete from t1 where k=88;