weixin_44061757 2019-04-08 17:48 采纳率: 0%
浏览 1052

mysql 插入数据中文乱码

我用navicat写的插入数据这样的话会失败,乱码。数据库和表的编码都是utf8的。后来我换了一种方法就成功了,就是改成了

insert into Student values('01' , '赵雷' , '1990-01-01' , '男'),

('02' , '钱电' , '1990-12-21' , '男'),

('03' , '孙风' , '1990-05-20' , '男'),

('04' , '李云' , '1990-08-06' , '男'),
('05' , '周梅' , '1991-12-01' , '女'),

('06' , '吴兰' , '1992-03-01' , '女'),

('07' , '郑竹' , '1989-07-01' , '女'),

('08' , '王菊' , '1990-01-20' , '女');

以下是错误的以及提示,不懂为什么,版本的问题么

mysql>
insert into Student values(04 , '李云' , '1990-08-06' , '男');

insert into Student values(05 , '周梅' , '1991-12-01' , '女');

insert into Student values(06 , '吴兰' , '1992-03-01' , '女');

insert into Student values('07' , '郑竹' , '1989-07-01' , '女');

insert into Student values('08' , '王菊' , '1990-01-20' , '女');

Query OK, 1 row affected

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''濂?)' at line 1
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''濂?)' at line 1
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''濂?)' at line 1
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''濂?)' at line 1
mysql> delete table student;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'table student' at line 1
mysql> drop table student;
Query OK, 0 rows affected

  • 写回答

2条回答 默认 最新

  • Jia_Li_z 2019-04-08 18:03
    关注

    你可以修改为字符集utf8mb4,排序规则:utf8mb4_general_ci

    评论

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办