MySQL information_schema related content
When you install or use MYSQL, you will find that in addition to the database you installed, there is also an information_schema database. What is the information_schema database used for? Friends who use WordPress blogs may wonder, is it necessary to install the database added by the template? After reading this article, you will have an understanding of the information_schema database.
The information_schema database comes with MySQL, which provides a way to access database metadata. What is metadata? Metadata is data about the data, such as database name or table name, column data type, or access permissions, etc. Other terms sometimes used to describe this information include "data dictionary" and "system catalog."
In MySQL, information_schema is regarded as a database, or rather an information database. It holds information about all other databases maintained by the MySQL server. Such as database name, database tables, data types and access rights of table columns, etc. In INFORMATION_SCHEMA, there are several read-only tables. They are actually views, not base tables, so you won't be able to see any files related to them.
information_schema database table description:
SCHEMATA table : Provided in the current mysql instance All database information. The results of show databases are taken from this table.
TABLES table: Provides information about tables in the database (including views). It describes in detail which schema a certain table belongs to, table type, table engine, creation time and other information. The result of show tables from schemaname is taken from this table.
COLUMNS table: provides column information in the table. Detailed description of all columns of a table and information about each column. The result of show columns from schemaname.tablename is taken from this table.
STATISTICS table: Provides information about table indexes. The result of show index from schemaname.tablename is taken from this table.
USER_PRIVILEGES (User Permissions) table: gives information about full permissions. This information is derived from the mysql.user authorization table. Yes and no standard table.
SCHEMA_PRIVILEGES (Scheme Permissions) table: gives information about schema (database) permissions. This information comes from the mysql.db authorization table. Yes and no standard table.
TABLE_PRIVILEGES(Table Permissions) table: gives information about table permissions. This information comes from the mysql.tables_priv grant table. Yes and no standard table.
COLUMN_PRIVILEGES (Column Permissions) table: gives information about column permissions. This information is derived from the mysql.columns_priv grant table. Yes and no standard table.
CHARACTER_SETS (Character Set) table: Provides information about the character sets available for mysql instances. The SHOW CHARACTER SET result set is taken from this table.
COLLATIONS table: provides comparison information about each character set.
COLLATION_CHARACTER_SET_APPLICABILITY table: Specifies the character set that can be used for proofreading. These columns are equivalent to the first two display fields of SHOW COLLATION.
TABLE_CONSTRAINTS table: describes the table where constraints exist. and the constraint type of the table.
KEY_COLUMN_USAGE table: describes the key column with constraints.
ROUTINES table: Provides information about stored subroutines (stored procedures and functions). At this time, the ROUTINES table does not contain custom functions (UDFs). The column named "mysql.proc name" specifies the mysql.proc table column corresponding to the INFORMATION_SCHEMA.ROUTINES table.
VIEWS table: gives information about the views in the database. You need to have show views permission, otherwise you cannot view view information.
TRIGGERS table: Provides information about trigger procedures. You must have super permission to view the table
This article explains the information_schema related content of MySQL. For more related content, please pay attention to the php Chinese website.
Related recommendations:
View mysql database size, table size and last modification time
Detailed explanation of Sublime Text 2
How to get CSS property value through JS
The above is the detailed content of MySQL information_schema related content. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

MySQL and phpMyAdmin are powerful database management tools. 1) MySQL is used to create databases and tables, and to execute DML and SQL queries. 2) phpMyAdmin provides an intuitive interface for database management, table structure management, data operations and user permission management.

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

MySQL is suitable for web applications and content management systems and is popular for its open source, high performance and ease of use. 1) Compared with PostgreSQL, MySQL performs better in simple queries and high concurrent read operations. 2) Compared with Oracle, MySQL is more popular among small and medium-sized enterprises because of its open source and low cost. 3) Compared with Microsoft SQL Server, MySQL is more suitable for cross-platform applications. 4) Unlike MongoDB, MySQL is more suitable for structured data and transaction processing.
