I know in oracle I can do something like this:
create synonym Cutomers for LongTablePrefix_Customers
Now, I can write sql statements like
select * from Customers
instead of monstrous
select * from LongTablePrefix_Customers
I realized, that mysql have same functionality there. I can create synonim for table and this is nice, but... But fields names are looks like LongTableName_ID
, LongTableName_Name
etc. Is it possible to create synonyms for fields?