Home > Back-end >  Project how to set up the mysql configuration into the table name case-insensitive, for help
Project how to set up the mysql configuration into the table name case-insensitive, for help

Time:03-19

Project how to set up the mysql configuration into the table name case-insensitive, for help

CodePudding user response:

Windows mysql table name is not case sensitive

CodePudding user response:

Case-sensitive depends on lower_case_table_names=1 (1 case insensitive; 0 case-sensitive)
Enter the database SQL show variables like '% lower %';
Lower_case_table_names=0 to 1
  • Related