在MYSQL中,是否可以创建一个具有相同名称但使用小写和大写的表。例如" abc"和" ABC"同一个数据库中的表?
答案 0 :(得分:0)
MySQL的:
mysql> create temporary table tt (s varchar(100));
Query OK, 0 rows affected (0.00 sec)
mysql> create temporary table TT (s varchar(100));
ERROR 1050 (42S01): Table 'TT' already exists
select version();
+------------+
| version() |
+------------+
| 5.7.19-log |
+------------+
MongoDB的:
> db.createCollection('tt');
{ "ok" : 1 }
> db.createCollection('TT');
{ "ok" : 1 }
> show collections;
TT
tt
> db.version();
3.4.9
你的问题是答案吗?)