MySQL ERROR 1231 (42000):Variable 'character_set_client' can't be set to the value of 'NULL'

后端 未结 6 1281
陌清茗
陌清茗 2020-12-12 16:47

I\'ve a MySQL 5.0.84 running in a Slackware 13.0 Staging server and wanted to copy a single table to another server which was built to use Ubuntu 1

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-12 17:22

    I changed from

    /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
    

    to

    /*!40101 SET CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    

    it worked for me

提交回复
热议问题