Is it possible to search for an entry in a whole database without specifying which table and in which column ?
And get the Table name that contains the entry we searched , like
SELECT (Table name ? )FROM (Database - not Table) WHERE ( unknown column ?) = 'our value';
I mean the result should be the Table name itself.
As for as I know there is nothing built-into MySQL that accomplishes this, however there is an alternative. This is not a very efficient approach, but if you must do this there is a way!
http://code.google.com/p/anywhereindb/