|
|||||||||||||||||||||||
|
Skip navigation links
Additional languages MySQL 6.0 Reference Manual :: 25 INFORMATION_SCHEMA Tables Section Navigation [Toggle]
Table of Contents [+/-]
Metadata is data about the data, such as the name of a database or table, the data type of a column, or access privileges. Other terms that sometimes are used for this information are data dictionary and system catalog.
In effect, we have a database named
Here is an example of a statement that retrieves information from
mysql>
Explanation: The statement requests a list of all the tables in
database
Each MySQL user has the right to access these tables, but can see
only the rows in the tables that correspond to objects for which the
user has the proper access privileges. In some cases (for example,
the
The
However, because
There is no difference between the privileges required for
The implementation for the
Users of SQL Server 2000 (which also follows the standard) may
notice a strong similarity. However, MySQL has omitted many columns
that are not relevant for our implementation, and added columns that
are MySQL-specific. One such column is the
Although other DBMSs use a variety of names, like
The following sections describe each of the tables and columns that
are in
To avoid using any name that is reserved in the standard or in DB2,
SQL Server, or Oracle, we changed the names of some columns marked
âMySQL extensionâ. (For example, we changed
The definition for character columns (for example,
Each section indicates what NoteAt present, there are some missing columns and some columns out of order. We are working on this and updating the documentation as changes are made.
For answers to questions that are often asked concerning the
© 1995-2008 MySQL AB. All rights reserved. |
||||||||||||||||||||||
|
|||||||||||||||||||||||



User Comments
You can find a clickable diagram of the information schema here:
http://www.xcdsql.org/Misc/MySQL_INFORMATION_SCHEMA.html (5.0 version) and here: http://www.xcdsql.org/MySQL/information_schema/5.1/MySQL_5_1_INFORMATION_SCHEMA.html (5.1. version)
Add your own comment.