创建表格students, create table students (name varchar(255),subject varchar(255),score int,stuid int); 添加数据, insert into students values ('张三','数学',89,1),('张三','语文',80,1),('张三','英语',70,1),('李四','数学',90
在启动Redis客户端如下加入参数输入可解决: [root@hadoop7 redis]# ./bin/redis-cli --raw 这里要注意--raw有两个“-”号 为什么在后面加上--raw就行了呢? 官方文档是这样说的: This time (integer) was omitted from the output since the CLI detected the outp
pycharm IDE python3环境,想读取excel中的中文文本到文件中,在写文件的时候报错: python3 ‘gbk’ codec can’t encode character ‘\xa0’ in position 总结了一些会报错的中文unicode字符: # doc = doc.replace('\xa0','')# doc = doc.replace('\u2b50','')
Incorrect string value: '\xE5\xBC\xA0\xE6\x97\xA0...' for column 'name' at row 1 这个错误的原因就是数据库的默认编码格式为latin1,而你要将utf8的中文插入到表中。 然后就将表的格式改为utf8。 使用指令为:alter table stu character set utf8; 但修改后