sql文件导入mysql出现中文乱码,.sql文件如下 20

createdatabasebbs;usebbs;createtablearticle(idintprimarykeyauto_increment,pidint,root... create database bbs;
use bbs;

create table article
(
id int primary key auto_increment,
pid int,
rootid int,
title varchar(255),
cont text,
pdate datetime,

isleaf int
);
insert into article values (null, 0, 1, '蚂蚁大战大象', '蚂蚁大战大象',now(),1);
insert into article values (null, 1, 1, '大象被打趴下了', '大象被打趴下了', now(),1);
insert into article values (null, 2, 1, '蚂蚁也不好过', '蚂蚁也不好过', now(), 0);
insert into article values (null, 2, 1, '瞎说', '瞎说', now(), 1);
insert into article values (null, 4, 1, '没有瞎说', '没有瞎说', now(), 0);
insert into article values (null, 1, 1, '怎么可能', '怎么可能', now(),1);
insert into article values (null, 6, 1, '怎么没有可能', '怎么没有可能', now(),0);
insert into article values (null, 6, 1, '可能性是很大的', '可能性是很大的', now(), 0);
insert into article values (null, 2, 1, '大象进医院了', '大象进医院了', now(), 1);
insert into article values (null, 9, 1, '护士是蚂蚁', '护士是蚂蚁', now(), 0);
展开
 我来答
玩转数据处理
2014-11-10 · 数据处理,Python,dotnet
玩转数据处理
采纳数:1613 获赞数:3794

向TA提问 私信TA
展开全部
--试试下面看看
CREATE DATABASE 'bbs' DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
use bbs;
create table article
(
id int primary key auto_increment,
pid int,
rootid int,
title varchar(255),
cont text,
pdate datetime,
isleaf int
);
insert into article values (null, 0, 1, '蚂蚁大战大象', '蚂蚁大战大象',now(),1);
insert into article values (null, 1, 1, '大象被打趴下了', '大象被打趴下了', now(),1);
insert into article values (null, 2, 1, '蚂蚁也不好过', '蚂蚁也不好过', now(), 0);
insert into article values (null, 2, 1, '瞎说', '瞎说', now(), 1);
insert into article values (null, 4, 1, '没有瞎说', '没有瞎说', now(), 0);
insert into article values (null, 1, 1, '怎么可能', '怎么可能', now(),1);
insert into article values (null, 6, 1, '怎么没有可能', '怎么没有可能', now(),0);
insert into article values (null, 6, 1, '可能性是很大的', '可能性是很大的', now(), 0);
insert into article values (null, 2, 1, '大象进医院了', '大象进医院了', now(), 1);
insert into article values (null, 9, 1, '护士是蚂蚁', '护士是蚂蚁', now(), 0);
追问

fq...5@sohu.com
推荐于2017-06-30 · 超过39用户采纳过TA的回答
知道小有建树答主
回答量:176
采纳率:65%
帮助的人:26.7万
展开全部
mysql:select Convert(字段 USING latin1) from 表名 C#: private string convertString(string srcString) { return System.Text.Encoding.GetEncoding("utf-8").GetString(System.Text.Encoding.GetEncoding("iso8859-1").GetBytes(srcString)); }
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友61f144c3
2017-06-29 · TA获得超过4145个赞
知道小有建树答主
回答量:1224
采纳率:71%
帮助的人:379万
展开全部
创建表的时候varchar改为nvarchar试试。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式