表名大小写配置
mysql表名默认区分大小写
# 表名小写查询
mysql> select * from big_data where name = 'test999999';
+---------+------------+------+--------------------+
| id | name | age | email |
+---------+------------+------+--------------------+
| 1000000 | test999999 | 9 | test999999@163.com |
+---------+------------+------+--------------------+
1 row in set (0.00 sec)
# 表名大写查询
mysql> select * from BIG_data where name = 'test999999'