|
jinguanding 发表于 2008-1-9 16:33 ![]()
我是复制你代码后改的...致意大小写....MySQL区分表名称大小写的...
区分吗? 你是说引用表的时候还是创建表的时候?
貌似不区分额:
root@localhost test 10:47:49> create table AB ( id int );
Query OK, 0 rows affected (0.06 sec)
root@localhost test 10:47:56> create table ab ( id int);
ERROR 1050 (42S01): Table 'ab' already exists
root@localhost test 10:48:06> select * from AB;
Empty set (0.00 sec)
root@localhost test 10:49:21> select * from ab;
Empty set (0.00 sec) |
|