SQlite: select into?

前端 未结 4 1557
Happy的楠姐
Happy的楠姐 2020-12-01 00:57

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 tru

4条回答
  •  失恋的感觉
    2020-12-01 01:07

    create table NewTable as
    select * from OldTable where 1 <> 1
    

    This will copy data structure for you.

提交回复
热议问题