MySQL: Can't give tables a name in Upper Camel Case (Pascal Case)

前端 未结 4 840
一整个雨季
一整个雨季 2021-01-06 02:14

I read that it is best practise to have table names in Pascal Case (ThisIsMyTableName). Therefor I would like to change my tables in MySQL. But neither phpmyadmin, nore SQL

4条回答
  •  感情败类
    2021-01-06 03:02

    The easiest way to take care of this is to add the following to your .ini file

    lower_case_table_names=2
    

    2 is the significance here for Windows. You can read more about it here Identifier Case Sensitivity

提交回复
热议问题