I'm not sure if I can use select into to import data from another table like this:
select * into
bookmark1
from bookmark;
Is it true that SQlite doesn't support this syntax? are there any other alternatives?
I'm not sure if I can use select into to import data from another table like this:
select * into
bookmark1
from bookmark;
Is it true that SQlite doesn't support this syntax? are there any other alternatives?
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
Hope this helps.
Thnks.