How to force case sensitive table names?

前端 未结 6 1779
花落未央
花落未央 2020-11-30 03:15

I\'m working on a MySQL database in windows.

I must move it into a Linux environment. MySQL database contains a lot of tables and stored procedures which are CASE

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 03:32

    Have a look at this article - http://dev.mysql.com/doc/refman/5.1/en/identifier-case-sensitivity.html

    Mode 2 allows to store tables with specified lettercase, but anyway, name comparisons won't be case sensitive and you won't be able to store table1 and Table1 at the same time.

提交回复
热议问题