美好的一天堆栈溢出。
我在将 sql 文件导入到我的 Windows 机器时遇到问题。sql文件来自linux机器。发生的情况是来自 linux 的表名是驼峰式大小写的,当迁移到 Windows 时,所有表名都变为小写。我不想调整我的代码以便能够访问我的数据库,所以无论如何我可以在 Windows 中实现驼峰式表名吗?
非常感谢。
从 linux 表名:-> FooBar
在windows中导入mysql工作台时:-> foobar
查询如下所示:
SELECT * FROM FooBar; // when the program is pointed to the database in windows, it will spit out that the table does not exist because the table name is "foobar"