Lines Matching refs:test1
21 create table test1(id integer primary key,a);
24 select test1.id as id,a as a,b as b
25 from test1 join test2 on test2.id = test1.id;
28 insert into test1 (id,a) values (NEW.id,NEW.a);
32 select * from test1;
45 select * from test1;
58 update test1 set a=NEW.a where id=NEW.id;
62 select * from test1;
75 select * from test1;
104 select * from test1;
111 select * from test1;