I'm migrating an application from a case insensitive database to MySQL. My DBA does not permit changing any Mysql configuration settings so using the "lower_case_table_names" is not an option.
Does MySQL have any aliasing ability to have multiple table names point to the same table?
For example, if USER and usersB were aliased to the same table, then these two queries would insert into the same table:
Insert into USER VALUES (2, 3....);
and
Insert into usersB VALUES (2, 3, ....);
Views come close to the desired functionality, but I would like to have update and alter structure commands work against all of the aliases.
Thanks!