I am working on a shared server where I can create a large number of MySQL databases using the providers admin panel.
The databases are created automatically with names which are build using my customer number + a counter. I cannot change these names. So when working in phpMyAdmin I a see a long list of databases with names like:
db11223344_1
db11223344_2
db11223344_3
...
db11223344_n
This makes working with the databases quite hard since I have to remember which database contains which data.
Is it possible to change the display name of the database without changing the actual database name? I would like to see a list like:
wordpress
myProjectXY
shop
...
DatabaseN
// OR Notes / Comments
db11223344_1 (wordpress)
db11223344_2 (myProjectXY)
db11223344_3 (shop)
...
db11223344_n (DatabaseN)
Is this possible in phpMyAdmin? Or does MySQL itself has a feature to add a different display name to a database which can be used in phpMyAdmin?
EDIT:
I don't think that this question is a duplicate of the linked question. This is NOT about creating an actual alias for a database which can actually be used to work with the database (this is what the linked question is asking).
This is just about changing the display name of a database within phpMyAdmin. This name does not need to be available / known anywhere outside phpMyAdmin.
Keeping the original database name as display name and adding a custom name/note would also be fine.
Is something like this possible in phpMyAdmin?