RosettaCodeData/Task/Set/DuckDB/set-1.duckdb

6 lines
197 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
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);