MySQL case sensitive issues and naming conventions

Source: Internet
Author: User

Transferred from: http://www.cnblogs.com/conanwang/p/5927557.html

1.MySQL Case Sensitive Rules

In MySQL, a library will correspond to a folder, the library of the table will be stored in the folder in the file, so the sensitivity of the operating system to the case of the database and the table case sensitive decision-making (MySQL has a read-only system variable Lower_case_file_system, Its value reflects exactly whether the current file system is case-sensitive, and therefore: MySQL database and table names under Windows are case-insensitive, and are case-sensitive in most types of UNIX systems.


The following is a detailed case-sensitive rule for MySQL:

Under Linux:

1, database name and table name are strictly case-sensitive;
2, the table alias is strictly case-sensitive;
3, the column name and the alias of the column in all cases are ignored case;
4, variable names are also strictly case-sensitive;

Under Windows:

All are case insensitive


Add:

1.MySQL has a system variable: Lower_case_table_names, which is specifically configured to differentiate between the case of a library name and a table name. If your system is windows and you want MySQL to be case sensitive, then you can add the following in the My.ini file, at the end of the [mysqld] section:

    1. #If set to 0, table names is stored as specified and comparisons is case sensitive.
    2. #If set to 1, table names is stored in lowercase on disk and comparisons is not case sensitive.
    3. #If set to 2, table names is stored as given but compared in lowercase. This option also applies to database names and table aliases.
    4. Lower_case_table_names=0

MySQL case sensitive issues and naming conventions

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.