SQlite: select into? SQlite: select into? sql sql

SQlite: select into?


You could do:

create table bookmark1 as select * from bookmark;


You can try this query:

insert into bookmark1 select * from bookmark


I assume that bookmark1 is a new table that you have created which is same as the bookmark table. In that case you can use the following format.

CREATE TABLE bookmark1 AS SELECT * FROM bookmark;

Or you can also use the insert statement with subquery. For different insert statement options refer: SQL As Understood By SQLite