Detailed explanation of MySQL table name case-insensitive configuration method

Detailed explanation of MySQL table name case-insensitive configuration method

By default, MySQL in Linux distinguishes between upper and lower case table names. Whether MySQL is case sensitive is determined by the parameter lower_case_table_names, where:

1) lower_case_table_names = 0

Case-sensitive (not case sensitive), this is the default setting. After this setting, it does not matter whether the table names created in MySQL contain uppercase letters or not, they can all be read and referenced normally.

2) lower_case_table_names = 1

Case-insensitive (i.e. case sensitive). After this setting, the table names are saved in lowercase on the hard disk, and MySQL converts all table names to lowercase for storage and search. This behavior also applies to database names and table aliases .

That is to say, after MySQL is set to be case-insensitive, when creating a database or table, no matter if uppercase letters are used when creating it, it will be forced to be saved in lowercase after the creation is successful!

The case rules for MySQL database names, table names, column names, and aliases under Linux are as follows:

1) Database names and table names are strictly case-sensitive;

2) Table aliases are strictly case-sensitive;

3) Column names and column aliases are case-insensitive in all cases;

4) Variable names are also strictly case-sensitive;

5) MySQL is not case-sensitive under Windows, but is case-sensitive by default under Linux.

6) If you want to distinguish between uppercase and lowercase letters when querying, you need to set the BINARY attribute for the field value. There are several ways to set it:
a) Setting at creation time:
CREATE TABLE T(A VARCHAR(10) BINARY);
b) Use alter to modify

Therefore, in order to ensure that programs and databases can run normally in different operating systems, the best way is to convert them to lowercase when designing tables! !

Modify mysql to be case-insensitive:

mysqladmin -uroot -p shutdown //Shut down the database in safe mode

Modify my.cnf //Add the following line of settings
.....
[mysqld]
lower_case_table_names=1
.....

Start mysql

The above detailed explanation of the configuration method of ignoring case in MySQL table names is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 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
  • 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)
  • MySQL table name case selection

<<:  How to use cookies to remember passwords for 7 days on the vue login page

>>:  Install Mininet from source code on Ubuntu 16.04

Recommend

JavaScript Timer Details

Table of contents 1. Brief Introduction 2. setInt...

Advantages and Problems of XHTML CSS Website Design

XHTML is the standard website design language cur...

Detailed explanation on how to deploy H5 games to nginx server

On the road to self-learning game development, th...

How does MySQL achieve master-slave synchronization?

Master-slave synchronization, also called master-...

Simple usage examples of MySQL custom functions

This article uses examples to illustrate the usag...

Several CSS3 tag shorthands (recommended)

border-radius: CSS3 rounded corners Syntax: borde...

18 sets of exquisite Apple-style free icon materials to share

Apple Mug Icons and Extras HD StorageBox – add on...

How to add vim implementation code examples in power shell

1. Go to Vim's official website to download t...

Mysql multi-condition query statement with And keyword

MySQL multi-condition query with AND keyword. In ...

How to implement online hot migration of KVM virtual machines (picture and text)

1. KVM virtual machine migration method and issue...

Install MySQL 5.7.18 using rpm package under CentOS 7

I have been using MySQL recently. The article mys...

In-depth analysis of Nginx virtual host

Table of contents 1. Virtual Host 1.1 Virtual Hos...

Basic usage details of Vue componentization

Table of contents 1. What is componentization? 2....

js version to realize calculator function

This article example shares the specific code of ...

Solution to multiple 302 responses in nginx proxy (nginx Follow 302)

Proxying multiple 302s with proxy_intercept_error...