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.
MySQL 提供了一个零配置数据库库 (libmysqld),它可以创建一个独立的数据库。
这个独立的数据库能以闪电般的速度合并到 MySQL 中吗?
SQLite DB 可以在眨眼之间合并到另一个数据库中,无论它承载多少数据。所有你需要做的:
open database mydata.db; attach database 'moredata.db' as attchdb; insert into maindb.table select * from attchdb.table;