MySQL库表名大小写的选择

1.决定大小写是否敏感的参数

在 mysql 中,数据库与 data 目录中的目录相对应。数据库中的每个表都对应于数据库目录中的至少一个文件(可能是多个文件,具体取决于存储引擎)。因此,操作系统的大小写是否敏感决定了数据库大小写是否敏感,而 windows 系统是对大小写不敏感的,linux 系统对大小写敏感。

默认情况下,库表名在 windows 系统下是不区分大小写的,而在 linux 系统下是区分大小写的。列名,索引名,存储过程、函数及事件名称在任何操作系统下都不区分大小写,列别名也不区分大小写。

除此之外,mysql 还提供了 lower_case_table_names 系统变量,该参数会影响表和数据库名称在磁盘上的存储方式以及在 mysql 中的使用方式,在 linux 系统,该参数默认为 0 ,在 windows 系统,默认值为 1 ,在 macos 系统,默认值为 2 。下面再来看下各个值的具体含义:

value

meaning

0

库表名以创建语句中指定的字母大小写存储在磁盘上,名称比较区分大小写。

1

库表名以小写形式存储在磁盘上,名称比较不区分大小写。mysql 在存储和查找时将所有表名转换为小写。此行为也适用于数据库名称和表别名。

2

库表名以创建语句中指定的字母大小写存储在磁盘上,但是 mysql 在查找时将它们转换为小写。名称比较不区分大小写。

一般很少将 lower_case_table_names 参数设置为 2 ,下面仅讨论设为 0 或 1 的情况。linux 系统下默认为 0 即区分大小写,我们来看下 lower_case_table_names 为 0 时数据库的具体表现:

# 查看参数设置
mysql> show variables like 'lower_case_table_names';
+------------------------+-------+
| variable_name          | value |
+------------------------+-------+
| lower_case_table_names | 0     |
+------------------------+-------+

# 创建数据库
mysql> create database testdb;
query ok, 1 row affected (0.01 sec)

mysql> create database testdb;
query ok, 1 row affected (0.02 sec)

mysql> show databases;
+--------------------+
| database           |
+--------------------+
| information_schema |
| testdb             |
| mysql              |
| performance_schema |
| sys                |
| testdb             |
+--------------------+

mysql> use testdb;
database changed
mysql> use testdb;
database changed
mysql> use testdb;
error 1049 (42000): unknown database 'testdb'

# 创建表
mysql> create table if not exists `test_tb` (
    ->   `increment_id` int(11) not null auto_increment comment '自增主键',
    ->   `stu_id` int(11) not null comment '学号',
    ->   `stu_name` varchar(20) default null comment '学生姓名',
    ->   primary key (`increment_id`),
    ->   unique key `uk_stu_id` (`stu_id`) using btree
    -> ) engine=innodb  default charset=utf8 comment='test_tb';
query ok, 0 rows affected (0.06 sec)
mysql> create table if not exists `student_info` (
    ->   `increment_id` int(11) not null auto_increment comment '自增主键',
    ->   `stu_id` int(11) not null comment '学号',
    ->   `stu_name` varchar(20) default null comment '学生姓名',
    ->   primary key (`increment_id`),
    ->   unique key `uk_stu_id` (`stu_id`) using btree
    -> ) engine=innodb  default charset=utf8 comment='student_info';
query ok, 0 rows affected (0.06 sec)
mysql> show tables;
+------------------+
| tables_in_testdb |
+------------------+
| student_info     |
| test_tb          |
+------------------+

# 查询表
mysql> select stu_id,stu_name from test_tb limit 1;
+--------+----------+
| stu_id | stu_name |
+--------+----------+
|   1001 | from1    |
+--------+----------+
1 row in set (0.00 sec)
mysql> select stu_id,stu_name from test_tb limit 1;
+--------+----------+
| stu_id | stu_name |
+--------+----------+
|   1001 | from1    |
+--------+----------+

mysql> select stu_id,stu_name from test_tb;
error 1146 (42s02): table 'testdb.test_tb' doesn't exist
mysql> select stu_id,stu_name from test_tb as a where a.stu_id = 1001; 
+--------+----------+
| stu_id | stu_name |
+--------+----------+
|   1001 | from1    |
+--------+----------+
1 row in set (0.00 sec)
mysql> select stu_id,stu_name from test_tb as a where a.stu_id = 1001;
error 1054 (42s22): unknown column 'a.stu_id' in 'where clause'

# 查看磁盘上的目录及文件
[root@localhost ~]#:/var/lib/mysql# ls -lh
total 616m
drwxr-x--- 2 mysql mysql   20 jun  3 14:25 testdb
...
drwxr-x--- 2 mysql mysql  144 jun  3 14:40 testdb
[root@localhost ~]#:/var/lib/mysql# cd testdb/
[root@localhost ~]#:/var/lib/mysql/testdb# ls -lh
total 376k
-rw-r----- 1 mysql mysql 8.6k jun  3 14:33 student_info.frm
-rw-r----- 1 mysql mysql 112k jun  3 14:33 student_info.ibd
-rw-r----- 1 mysql mysql 8.6k jun  3 14:40 test_tb.frm
-rw-r----- 1 mysql mysql 112k jun  3 14:40 test_tb.ibd
-rw-r----- 1 mysql mysql   67 jun  3 14:25 db.opt
-rw-r----- 1 mysql mysql 8.6k jun  3 14:30 test_tb.frm
-rw-r----- 1 mysql mysql 112k jun  3 14:30 test_tb.ibd

通过以上实验我们发现 lower_case_table_names 参数设为 0 时,mysql 库表名是严格区分大小写的,而且表别名同样区分大小写但列名不区分大小写,查询时也需要严格按照大小写来书写。同时我们注意到,允许创建名称同样但大小写不一样的库表名(比如允许 testdb 和 testdb 库共存)。

你有没有考虑过 lower_case_table_names 设为 0 会出现哪些可能的问题,比如说:一位同事创建了 test 表,另一位同事在写程序调用时写成了 test 表,则会报错不存在,更甚者可能会出现 testdb 库与 testdb 库共存,test 表与 test 表共存的情况,这样就更加混乱了。所以为了实现最大的可移植性和易用性,我们可以采用一致的约定,例如始终使用小写名称创建和引用库表。也可以将 lower_case_table_names 设为 1 来解决此问题,我们来看下此参数为 1 时的情况:

# 将上述测试库删除 并将 lower_case_table_names 改为 1 然后重启数据库
mysql> show variables like 'lower_case_table_names';
+------------------------+-------+
| variable_name          | value |
+------------------------+-------+
| lower_case_table_names | 1     |
+------------------------+-------+

# 创建数据库
mysql> create database testdb;
query ok, 1 row affected (0.02 sec)

mysql> create database testdb;
error 1007 (hy000): can't create database 'testdb'; database exists
mysql> show databases;
+--------------------+
| database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| testdb             |
+--------------------+
7 rows in set (0.00 sec)

mysql> use testdb;
database changed
mysql> use testdb;
database changed

# 创建表
mysql> create table if not exists `test_tb` (
    ->   `increment_id` int(11) not null auto_increment comment '自增主键',
    ->   `stu_id` int(11) not null comment '学号',
    ->   `stu_name` varchar(20) default null comment '学生姓名',
    ->   primary key (`increment_id`),
    ->   unique key `uk_stu_id` (`stu_id`) using btree
    -> ) engine=innodb  default charset=utf8 comment='test_tb';
query ok, 0 rows affected (0.05 sec)
mysql> create table test_tb (id int);
error 1050 (42s01): table 'test_tb' already exists

mysql> show tables;
+------------------+
| tables_in_testdb |
+------------------+
| test_tb          |
+------------------+

# 查询表
mysql> select stu_id,stu_name from test_tb limit 1;
+--------+----------+
| stu_id | stu_name |
+--------+----------+
|   1001 | from1    |
+--------+----------+
1 row in set (0.00 sec)

mysql> select stu_id,stu_name from test_tb limit 1;       
+--------+----------+
| stu_id | stu_name |
+--------+----------+
|   1001 | from1    |
+--------+----------+
1 row in set (0.00 sec)

mysql> select stu_id,stu_name from test_tb as a where a.stu_id = 1002;
+--------+----------+
| stu_id | stu_name |
+--------+----------+
|   1002 | dfsfd    |
+--------+----------+
1 row in set (0.00 sec)

当 lower_case_table_names 参数设为 1 时,可以看出库表名统一用小写存储,查询时不区分大小写且用大小写字母都可以查到。这样会更易用些,程序里无论使用大写表名还是小写表名都可以查到这张表,而且不同系统间数据库迁移也更方便,这也是建议将 lower_case_table_names 参数设为 1 的原因。

2.参数变更注意事项

lower_case_table_names 参数是全局系统变量,不可以动态修改,想要变动时,必须写入配置文件然后重启数据库生效。如果你的数据库该参数一开始为 0 ,现在想要改为 1 ,这种情况要格外注意,因为若原实例中存在大写的库表,则改为 1 重启后,这些库表将会不能访问。如果需要将 lower_case_table_names 参数从 0 改成 1 ,可以按照下面步骤修改:

首先核实下实例中是否存在大写的库及表,若不存在大写的库表,则可以直接修改配置文件然后重启。若存在大写的库表,则需要先将大写的库表转化为小写,然后才可以修改配置文件重启。

当实例中存在大写库表时,可以采用下面两种方法将其改为小写:

1、通过 mysqldump 备份相关库,备份完成后删除对应库,之后修改配置文件重启,最后将备份文件重新导入。此方法用时较长,一般很少用到。

2、通过 rename 语句修改,具体可以参考下面 sql:

# 将大写表重命名为小写表 
rename table test to test;

# 若存在大写库 则需要先创建小写库 然后将大写库里面的表转移到小写库
rename table testdb.test_tb to testdb.test_tb;

# 分享两条可能用到的sql
# 查询实例中有大写字母的表
select
 table_schema,
 table_name
from
 information_schema.`tables` 
where
 table_schema not in ( 'information_schema', 'sys', 'mysql', 'performance_schema' ) 
 and table_type = 'base table' 
 and table_name regexp binary '[a-z]'
  
 
# 拼接sql 将大写库中的表转移到小写库
select
 concat( 'rename table testdb.', table_name, ' to testdb.', table_name, ';' ) 
from
 information_schema.tables 
where
 table_schema = 'testdb';

总结:

本篇文章主要介绍了 mysql 库表大小写问题,相信你看了这篇文章后,应该明白为什么库表名建议使用小写英文了。如果你想变更 lower_case_table_names 参数,也可以参考下本篇文章哦。

以上就是mysql库表名大小写的选择的详细内容,更多关于mysql库表名大小写的资料请关注www.887551.com其它相关文章!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐