【发布时间】:2013-12-07 15:43:57
【问题描述】:
我有一个这样的 sqlite 数据库:
_id | word | spell | detail | created | is_deleted | phonetic
______________________________________________________________
1 | hello| hello | ok |173569854| 0 | /hello/
______________________________________________________________
2 | nice | nice | test |156489874| 0 | /nice/
______________________________________________________________
.
.
.
现在我想创建一个像这样的新数据库:
_id | word | phonetic
_____________________
如何将数据从原始数据库复制到新数据库?
【问题讨论】: