Are table names in MySQL case sensitive?

后端 未结 5 627
半阙折子戏
半阙折子戏 2020-11-22 05:46

Are table names in MySQL case sensitive?

On my Windows development machine the code I have is able to query my tables which appear to be all lowercase. When I deploy

相关标签:
5条回答
  • 2020-11-22 05:53

    Table names in MySQL are file system entries, so they are case insensitive if the underlying file system is.

    0 讨论(0)
  • 2020-11-22 05:59

    Database and table names are not case sensitive in Windows, and case sensitive in most varieties of Unix or Linux.

    To resolve the issue, set the lower_case_table_names to 1

    lower_case_table_names=1

    This will make all your tables lowercase, no matter how you write them.

    0 讨论(0)
  • 2020-11-22 06:10
    1. Locate the file at /etc/mysql/my.cnf

    2. Edit the file by adding the following lines:

       [mysqld]
      
       lower_case_table_names=1
      
    3. sudo /etc/init.d/mysql restart

    4. Run mysqladmin -u root -p variables | grep table to check that lower_case_table_names is 1 now

    You might need to recreate these tables to make it work.

    0 讨论(0)
  • 2020-11-22 06:13

    In general:

    Database and table names are not case sensitive in Windows, and case sensitive in most varieties of Unix.

    In MySQL, databases correspond to directories within the data directory. Each table within a database corresponds to at least one file within the database directory. Consequently, the case sensitivity of the underlying operating system plays a part in the case sensitivity of database and table names.

    One can configure how tables names are stored on the disk using the system variable lower_case_table_names (in the my.cnf configuration file under [mysqld]).

    Read the section: 10.2.2 Identifier Case Sensitivity for more information.

    0 讨论(0)
  • 2020-11-22 06:16

    It depends upon lower_case_table_names system variable:

    show variables where Variable_name='lower_case_table_names'
    

    There are three possible values for this:

    • 0 - lettercase specified in the CREATE TABLE or CREATE DATABASE statement. Name comparisons are case sensitive.
    • 1 - Table names are stored in lowercase on disk and name comparisons are not case sensitive.
    • 2 - lettercase specified in the CREATE TABLE or CREATE DATABASE statement, but MySQL converts them to lowercase on lookup. Name comparisons are not case sensitive.

    Documentation

    0 讨论(0)
提交回复
热议问题