Home > Database > Mysql Tutorial > Mysql 导入SQL脚本乱码的有关问题

Mysql 导入SQL脚本乱码的有关问题

WBOY
Release: 2016-06-07 16:15:03
Original
1232 people have browsed it

Mysql 导入SQL脚本乱码的问题 写了一个SQL 脚本,中文数据,使用source数据导入数据库时中文全部乱码 解决办法,再打开数据库的时候就是用utf8的方法打开: ? mysql -uroot -p --default-character-set=utf8 use dbName source newdata.sql ? 这样打开数据库再

Mysql 导入SQL脚本乱码的问题

写了一个SQL 脚本,中文数据,使用source数据导入数据库时中文全部乱码

解决办法,再打开数据库的时候就是用utf8的方法打开:

?

mysql -uroot -p --default-character-set=utf8

use dbName

source newdata.sql

?

这样打开数据库再导入就好了

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template