本月博客排行
-
第1名
龙儿筝 -
第2名
wy_19921005 -
第3名
zysnba - sgqt
- johnsmith9th
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- johnsmith9th
- lzyfn123
- zhanjia
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
- jveqi
- java-007
- sunj
最新文章列表
[MySQL]Error when foreign referencing in mySQL (Error 3780)
参考:https://stackoverflow.com/questions/58550408/error-when-foreign-referencing-in-mysql-error-3780
这是由于两个表的table collation不同导致的.
修改表collation:
ALTER TABLE `basename`.`tablename` COLLATE=utf8 ...
MySQL: Charset and Collation
1. Introduction
1) create table table_name (column_declaration) charset utf8;
2) set names gbk;
Comments:
1) What's the meaning?
2) What's the difference?
2. Charset
...
mysql字段的collation默认规则在多语言环境下的问题
mysql字段的collation默认规则在多语言环境下的问题
同事碰到的一个诡异问题,挺有意思的..开始以为是索引的问题,后来才发现是collation的问题
问题描述如下:
在mysql表keywords对keyword字段进行查询,SQL为
select * from keywords where keyword = 'latigos'
匹配出2条结果,但是2条结果的keyword字段是不一 ...