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 -u doadmin -p -f tetdb < test.sql
然后我将所有导入的表名和列都被 Backtick (´) 扭曲。
'test_cache_menu' 'test_cache_data'
我的 test.sql 太大(40GB),所以我无法编辑该文件。
使用这些命令:
1)通过以下方式登录mysql:
mysql -u USERNAME -p
2)创建一个要导入的数据库
create database DB_NAME;
3)使用创建的数据库
use DB_NAME;
4)然后将 test.sql 导出到您的数据库:
source /PATH_TO_DIR/test.sql;
就这样