Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据MySQL 文档,我们不能将0or用于 Windows 操作系统2的变量。lower_case_table_names使用选项1将以小写形式创建表。那么我们应该如何准确地创建大写的表格呢?
0
2
lower_case_table_names
1
我的 MySQL 版本 - 5.5.24
保留lower_case_table_names现在的配置变量,并在创建所有表时使用大写名称:
CREATE TABLE MY_UPPERCASE_TABLE(...);