While importing mysqldump file ERROR 1064 (42000) near ' ■/ ' at line 1

后端 未结 3 1032
陌清茗
陌清茗 2021-01-31 05:03

Cannot import the below dump file created by mysqldump.exe in command line of windows

/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET         


        
3条回答
  •  余生分开走
    2021-01-31 05:56

    If you need to import database, this is the import command required on Windows:

    mysql --user=root --password=root --default_character_set utf8 database2 < database1.backup.sql
    

提交回复
热议问题