how to search the whole database for a column name in sqli.
Suppose we have 160 tables with many columns i want to look for animals column inside the database. how would i do that. I have seen couple of examples here mostly they search the column name if the table name is known. but what if i dont know the table itself..??
table 1, table 2..... table 160 and i am looking for "animal" column in the whole database.
i tried if the table is known its working
SELECT * FROM TABLE_NAME WHERE COLUMN_NAME='animal'