table alias (or 'symlink') in mysql
- by andreash
Hi there,
in MySQL5.1, is there a way to make one table accessible by two different names? I'm thinking about somethink like a symlink on linux filesystems.
I know theres the
CREATE VIEW myview AS SELECT * FrOM mytable
thing, but I don't only need to SELECT from both names, but also delete etc ...
You might ask why I want to do this? It's…