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 工作台可以将 MYSQL 数据模型导出到 SQL 创建表脚本。但是我可以在导出时选择隐藏评论吗?如果是,如何?
我不能为您提供任何集成工具。您可以通过sed运行它。以下命令可以解决问题:
sed '/^COMMENT/ d' original.sql > cleaned.sql
(嗯......显然你需要 sed 为此......)
Server->Data export->Advanced options->SQL