tags:

views:

26

answers:

0

I have a number of databases with the same table structure. When I write a function I have to copy it to all the databases. Is it a good idea to add the function to "mysql" database and call it from other DB using

select mysql.fName()

Are there any disadvantages? The advantage is that when I need to change it, I will change it only once.