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.
我有一个包含大约 15 个表的数据库,我使用 MySQL Workbench 对其进行了一些重组(更改为 innoDB,创建了外键等)。我可以从 EER 图中提取 sql 格式的模式,但是如何在不丢失数据的情况下将其导入 MySQL?
提前致谢
mysql -uuser -ppassword dbname < schema.sql
但不要忘记创建数据库dbname和授予 user user。
dbname
user