I have a simple SQL question. I want to make a 3 column database and I have the following code:
sqlite3 meshdb.db \"create table t1 (t1key INTEGER PRIMARY KE
Instead of insert use
insert
create table newtable as select * from footmp;
It is better and quicker.