MySQL Databases in Linux are case sensitive by default.
When I encountered such a problem during development today, when I changed the connected database to a server (the server is a Linux system), the program encountered an error after it ran, the system prompts that the database table cannot be found,
In my opinion, MySQL DATA is case-insensitive when I open the database and check the data. In Linux, MySQL strictly distinguishes the size by default.
Write, you can add configuration in the configuration file,
After logging on with the root account, add lower_case_table_names = 1 to the [mysqld] in/etc/my. cnf and restart the MYSQL service. At this time, the setting is successful: The table name is case insensitive;
0: Case Sensitive, 1: case insensitive
In Linux, the database name, table name, column name, And alias are case-sensitive:
1. The database name and table name are case sensitive;
2. Table aliases are case sensitive;
3. The column name and column alias are case-insensitive in all cases;
4. Variable names are case sensitive;