--从T1数据库的title_info表复制记录到T2的sn_info表。
Insert Into sn_info(author_e,bstutorsname,years,bsdegree,bsspeciality)
select author_e,bstutorsname,years,bsdegree,bsspeciality
from T1.title_info where author_e!="";
在SQLite Expert中运行报错如下:
请问,在SQLite中如何实现从一个数据库的某个表的记录复制到另一个数据库的某个表中呢?
感谢指教!