What is the information_schema database?
| In MySQL version 5.02 and above there is an additional database called information_schema. This database provides access to the database metadata. This includes the name of a database or a table, the data type of a column, access privileges, etc.
The important thing to remember about the information_schema database is that you can query it, but you cannot change its structure or modify its data. |
Also Read

















