问题 数据库大小写不敏感 库名,表名敏感: 配置参数lower_case_table_names 可选值 【0,1】0不敏感,1敏感 数据敏感: 排序规则: *_bin: 表示的是binary case sensitive collation,也就是说是区分大小写。 *_ci: case insen ...
分类:
数据库 时间:
2021-06-21 20:31:26
阅读次数:
0
查看是否区分大小写 show Variables like '%table_names' 查看lower_case_table_names的值,0代表区分,1代表不区分 修改方法 1.用ROOT登录,修改/etc/my.cnf 2.在[mysqld]下加入一行:lower_case_table_na ...
分类:
数据库 时间:
2021-06-17 17:06:18
阅读次数:
0
1.show variables like 'lower%' 2.在my.cnf中的[mysqld]后面添加lower_case_table_names=1 3.重启mysql service mysqld restart ...
分类:
数据库 时间:
2021-05-24 16:02:50
阅读次数:
0
之前文章介绍过MySQL修改lower_case_table_names参数,如果之前大写存储的表将无法识别,需要特殊处理。 最近遇到一例应用开发人员在修改这个参数之后,为了清除之前大写存储的表,做了误操作,导致主主不同步。 1.故障现象模拟 2.推进GTID解决 1.故障现象模拟 在lower_c ...
分类:
数据库 时间:
2020-07-03 01:12:37
阅读次数:
85
最近将windows上的mysql数据库导入到阿里云上,结果项目一直报错,提示表不存在,网上查了下应该是mysql的配置导致的,找到mysql的配置文件,我的配置文件叫“my.cnf”,在最后加一行“lower_case_table_names=1” 加上配置之后记得重启数据库 ...
分类:
数据库 时间:
2020-06-21 12:15:31
阅读次数:
52
此博客链接:https://www.cnblogs.com/ping2yingshi/p/13096709.html 转换成小写字母 题目链接:https://leetcode-cn.com/problems/to-lower-case/ 实现函数 ToLowerCase(),该函数接收一个字符串参 ...
分类:
其他好文 时间:
2020-06-11 23:18:16
阅读次数:
61
Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Example 1: Input: "Hello" Output: "hello" ...
分类:
其他好文 时间:
2020-05-16 10:32:54
阅读次数:
63
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:
其他好文 时间:
2020-05-11 13:14:30
阅读次数:
81
一、networkx介绍 NetworkX提供图形(或网络)的数据结构以及图形算法,生成器和绘图工具。 函数,方法和变量名是lower_case_underscore(小写,下划线表示单词之间的空格)。 二、基础 1、导入模块 import networkx as nx 2、图/网络 图的类型 Gr ...
分类:
编程语言 时间:
2020-04-12 14:37:33
阅读次数:
90
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:
其他好文 时间:
2020-03-18 11:13:53
阅读次数:
47