1139
1139
insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
1141
1141
insert into t2 select A.a + 10 * (B.a + 10 * C.a), 10, 'filler' from t1 A,
1142
1142
t1 B, t1 C where A.a < 5;
1143
1143
insert into t2 select 1000, b, 'filler' from t2;