-edit-, to make it more understandable, I just used the cmd line (in fact, in this case) and wanted to do a quick test with ram and didn't feel like you were making a full-blown prj for a quick test test.
I want to populate this table with 10,000,000 values, but first I want only 1,000.
I tried this in the sqlite database browser, but 3 is not inserted unless I reset everything after it. But more importantly, I don't know how to make num from 1 to 1000.
create table if not exists test1(id integer primary key, val integer);
insert into test1(val) select '3' as num where num between 1 and 1000
user34537
source
share