Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个具有数据库的应用程序(在应用程序中创建和填充)。我想做的是能够创建一个新数据库(同时保留原始数据库)并上传新数据库。新数据库基于原始数据库中的一个表。
我已经有将文件上传到我的网络服务器中的文件夹的代码。CREATE TABLE new_table AS SELECT * FROM old_table我还使用SQLite 命令成功地基于现有数据库表创建了一个新表。
CREATE TABLE new_table AS SELECT * FROM old_table
但是,我想创建一个全新的数据库,而不仅仅是另一个表。
有任何想法吗?