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: 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 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:
|
<<: How to use cookies to remember passwords for 7 days on the vue login page
>>: Install Mininet from source code on Ubuntu 16.04
Table of contents 1. Brief Introduction 2. setInt...
XHTML is the standard website design language cur...
On the road to self-learning game development, th...
Master-slave synchronization, also called master-...
This article uses examples to illustrate the usag...
border-radius: CSS3 rounded corners Syntax: borde...
Apple Mug Icons and Extras HD StorageBox – add on...
1. Go to Vim's official website to download t...
MySQL multi-condition query with AND keyword. In ...
1. KVM virtual machine migration method and issue...
I have been using MySQL recently. The article mys...
Table of contents 1. Virtual Host 1.1 Virtual Hos...
Table of contents 1. What is componentization? 2....
This article example shares the specific code of ...
Proxying multiple 302s with proxy_intercept_error...