MySQL table name case selection

MySQL table name case selection

1. Parameters that determine case sensitivity

In MySQL, databases correspond to directories within the data directory. Each table in a database corresponds to at least one file (possibly multiple files, depending on the storage engine) in the database directory. Therefore, the case sensitivity of the operating system determines whether the database is case sensitive. The Windows system is case-insensitive, while the Linux system is case-sensitive.

By default, library table names are case-insensitive in Windows systems, but case-sensitive in Linux systems. Column names, index names, stored procedure, function, and event names are not case sensitive in any operating system, and column aliases are also not case sensitive.

In addition, MySQL also provides the lower_case_table_names system variable, which affects how table and database names are stored on disk and how they are used in MySQL. On Linux systems, this parameter defaults to 0, on Windows systems, the default value is 1, and on macOS systems, the default value is 2. Let's take a look at the specific meaning of each value:

Value

Meaning

0

The library and table names are stored on disk in the letter case specified in the creation statement, and name comparison is case-sensitive.

1

Library and table names are stored on disk in lowercase, and name comparison is case-insensitive. MySQL converts all table names to lower case when storing and looking them up. This behavior also applies to database names and table aliases.

2

Database and table names are stored on disk in the letter case specified in the create statement, but MySQL converts them to lower case when looking them up. Name comparisons are not case-sensitive.

It is rare to set the lower_case_table_names parameter to 2, so only the cases where it is set to 0 or 1 are discussed below. The default value in Linux is 0, which means case-sensitive. Let's look at the specific performance of the database when lower_case_table_names is 0:

# View parameter settingsmysql> show variables like 'lower_case_table_names';
+------------------------+-------+
| Variable_name | Value |
+------------------------+-------+
| lower_case_table_names | 0 |
+------------------------+-------+

# Create database 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'

# Create tablemysql> CREATE TABLE if not exists `test_tb` (
    -> `increment_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key',
    -> `stu_id` int(11) NOT NULL COMMENT 'student number',
    -> `stu_name` varchar(20) DEFAULT NULL COMMENT 'Student name',
    -> 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 'Auto-increment primary key',
    -> `Stu_id` int(11) NOT NULL COMMENT 'Student ID',
    -> `Stu_name` varchar(20) DEFAULT NULL COMMENT 'Student name',
    -> 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 |
+------------------+

# Query tablemysql> 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'

# View the directories and files on the disk [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

Through the above experiments, we found that when the lower_case_table_names parameter is set to 0, the MySQL library table name is strictly case-sensitive, and the table alias is also case-sensitive, but the column name is not case-sensitive. When querying, it is also necessary to write strictly according to upper and lower case. At the same time, we noticed that it is allowed to create library and table names with the same name but different capitalization (for example, TestDb and testdb libraries are allowed to coexist).

Have you ever considered the possible problems that may arise when lower_case_table_names is set to 0? For example, if one colleague creates a Test table and another colleague calls it as the test table when writing a program, an error message will be displayed saying that the table does not exist. Worse still, the TestDb library and the testdb library may coexist, and the Test table and the test table may coexist, which is even more confusing. So for maximum portability and ease of use, we can adopt consistent conventions, such as always creating and referencing library tables using lowercase names. You can also set lower_case_table_names to 1 to solve this problem. Let's take a look at what happens when this parameter is 1:

# Delete the above test library and change lower_case_table_names to 1 and restart the database mysql> show variables like 'lower_case_table_names';
+------------------------+-------+
| Variable_name | Value |
+------------------------+-------+
| lower_case_table_names | 1 |
+------------------------+-------+

# Create database 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

# Create tablemysql> CREATE TABLE if not exists `test_tb` (
    -> `increment_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key',
    -> `stu_id` int(11) NOT NULL COMMENT 'student number',
    -> `stu_name` varchar(20) DEFAULT NULL COMMENT 'Student name',
    -> 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 |
+------------------+

# Query tablemysql> 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)

When the lower_case_table_names parameter is set to 1, it can be seen that the database table names are uniformly stored in lowercase, and the query is case-insensitive and can be searched using uppercase and lowercase letters. This will be easier to use. The program can search for this table regardless of whether it uses an uppercase or lowercase table name. It is also more convenient to migrate databases between different systems. This is why it is recommended to set the lower_case_table_names parameter to 1.

2. Notes on parameter changes

The lower_case_table_names parameter is a global system variable and cannot be modified dynamically. If you want to change it, you must write it into the configuration file and restart the database to take effect. If the parameter of your database is initially set to 0 and you want to change it to 1, you should be extra careful because if there are uppercase libraries and tables in the original instance, these libraries and tables will be inaccessible after the restart after changing it to 1. If you need to change the lower_case_table_names parameter from 0 to 1, you can modify it as follows:

First, verify whether there are uppercase libraries and tables in the instance. If not, you can directly modify the configuration file and restart. If there are uppercase library tables, you need to convert them to lowercase before you can modify the configuration file and restart.

If there are uppercase database tables in the instance, you can use the following two methods to change them to lowercase:

1. Back up the relevant database through mysqldump, delete the corresponding database after the backup is complete, then modify the configuration file and restart, and finally re-import the backup file. This method takes a long time and is rarely used.

2. Modify through the rename statement. For details, please refer to the following SQL:

# Rename the uppercase table to the lowercase table
 rename table TEST to test;

# If an uppercase database exists, you need to create a lowercase database first and then transfer the table in the uppercase database to the lowercase database. rename table TESTDB.test_tb to testdb.test_tb;

# Share two SQL statements that may be used
# Query the table with uppercase letters in the example 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 '[AZ]'


   # Splice SQL to transfer the table in the uppercase database to the lowercase database SELECT
 CONCAT( 'rename table TESTDB.', TABLE_NAME, ' to testdb.', TABLE_NAME, ';' )
 FROM
 information_schema.TABLES
 WHERE
 TABLE_SCHEMA = 'TESTDB';

Summarize:

This article mainly introduces the case issues of MySQL database tables. I believe that after reading this article, you should understand why it is recommended to use lowercase English for database table names. If you want to change the lower_case_table_names parameter, you can also refer to this article.

The above is the details of the selection of uppercase and lowercase names of MySQL library and table names. For more information about the uppercase and lowercase names of MySQL library and table names, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Notes on MySQL case sensitivity
  • MySQL character types are case sensitive
  • How to set mysql to case insensitive
  • Analysis of problems caused by MySQL case sensitivity
  • How to solve the problem of case insensitivity in MySQL queries
  • MySQL database case sensitivity issue
  • Detailed explanation of MySQL table name case-insensitive configuration method
  • Linux system MySQL forgotten password, reset password, ignore the case of table and column names
  • How to distinguish uppercase and lowercase letters in strings when querying MySQL
  • MySql query case insensitive solution (two)

<<:  A brief discussion on Linux signal mechanism

>>:  Web page text design should be like smart girls wearing clothes

Recommend

JavaScript quickly implements calendar effects

This article example shares the specific code of ...

The latest 36 high-quality free English fonts shared

01. Infinity Font Download 02. Banda Font Download...

HTML table markup tutorial (28): cell border color attribute BORDERCOLOR

To beautify the table, you can set different bord...

Version numbers in css and js links in HTML (refresh cache)

background Search the keyword .htaccess cache in ...

Vue must learn knowledge points: the use of forEach()

Preface In front-end development, we often encoun...

Nexus uses nginx proxy to support HTTPS protocol

background All company websites need to support t...

The pitfall record of the rubber rebound effect of iOS WeChat H5 page

Business requirements One of the projects I have ...

HTML implements read-only text box and cannot modify the content

Without further ado, I will post the code for you...

Summary of common MySQL commands

Set change mysqlroot password Enter the MySQL dat...

Detailed steps for configuring Tomcat server in IDEA 2020

The steps for configuring Tomcat in IDEA 2020 are...

Analysis of the HTML writing style and reasons of experienced people

1. Navigation: Unordered List vs. Other Label Ele...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...