Lines Matching refs:REPLACE
26 c NOT NULL ON CONFLICT REPLACE DEFAULT 6,
57 INSERT OR REPLACE INTO t1(b,c,d,e) VALUES(2,3,4,5);
85 INSERT OR REPLACE INTO t1(a,c,d,e) VALUES(1,3,4,5);
113 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,null,3,4,5);
134 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,2,null,4,5);
176 INSERT OR REPLACE INTO t1(e,d,c,b,a) VALUES(1,2,3,null,5);
193 UPDATE OR REPLACE t1 SET a=null;
225 UPDATE OR REPLACE t1 SET b=null, d=e, e=d;
296 INSERT OR REPLACE INTO t1(b,c,d,e) VALUES(2,3,4,5);
324 INSERT OR REPLACE INTO t1(a,c,d,e) VALUES(1,3,4,5);
352 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,null,3,4,5);
373 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,2,null,4,5);
415 INSERT OR REPLACE INTO t1(e,d,c,b,a) VALUES(1,2,3,null,5);
432 UPDATE OR REPLACE t1 SET a=null;
464 UPDATE OR REPLACE t1 SET b=null, d=e, e=d;