6 lines
197 B
Text
6 lines
197 B
Text
|
|
create or replace table s (id INTEGER UNIQUE NOT NULL);
|
||
|
|
create or replace table t (id INTEGER UNIQUE NOT NULL);
|
||
|
|
|
||
|
|
insert into s from generate_series(1,10);
|
||
|
|
insert into t from generate_series(5,15);
|