在说明系统数据库之前,先来看下MySQL在数据字典方面的演变历史:
MySQL4.1 提供了information_schema 数据字典。从此可以很简单的用SQL语句来检索需要的系统元数据了。
MySQL5.5 提供了performance_schema 性能字典。 但是这个字典比较专业,一般人可能也就看看就不了了之了。
MySQL5.7 提供了 sys系统数据库。 sys数据库里面包含了一系列的存储过程、自定义函数以及视图来帮助我们快速的了解系统的元数据信息。
sys系统数据库结合了information_schema和performance_schema的相关数据,让我们更加容易的检索元数据。 现在呢,我就示范下几种场景下如何快速的使用。
第一,
比如之前想要知道某个表是否存在与否,可以用以下两种方法:
A, 悲观的方法,写SQL从information_schema中拿信息:
mysql> SELECT IF(COUNT(*) = 0,'Not exists!','Exists!') AS 'result' FROM information_schema.tables WHERE table_schema = 'new_feature' AND table_name = 't1'; +-------------+ | result | +-------------+ | Not exists! | +-------------+ 1 row in set (0.00 sec)
B,乐观的方法,假设表存在,写一个存储过程:
DELIMITER $$ USE `new_feature`$$ DROP PROCEDURE IF EXISTS `sp_table_exists`$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_table_exists`( IN db_name VARCHAR(64), IN tb_name VARCHAR(64), OUT is_exists VARCHAR(60) ) BEGIN DECLARE no_such_table CONDITION FOR 1146; DECLARE EXIT HANDLER FOR no_such_table BEGIN SET is_exists = 'Not exists!'; END; SET @stmt = CONCAT('select 1 from ',db_name,'.',tb_name); PREPARE s1 FROM @stmt; EXECUTE s1; DEALLOCATE PREPARE s1; SET is_exists = 'Exists!'; END$$ DELIMITER ;
现在来调用:
mysql> call sp_table_exists('new_feature','t1',@result); Query OK, 0 rows affected (0.00 sec) mysql> select @result; +-------------+ | @result | +-------------+ | Not exists! | +-------------+ 1 row in set (0.00 sec)
现在我们直接用sys数据库里面现有的存储过程来进行调用,
mysql> CALL table_exists('new_feature','t1',@v_is_exists); Query OK, 0 rows affected (0.00 sec) mysql> SELECT IF(@v_is_exists = '','Not exists!',@v_is_exists) AS 'result'; +-------------+ | result | +-------------+ | Not exists! | +-------------+ 1 row in set (0.00 sec)
第二,获取没有使用过的索引。
mysql> SELECT * FROM schema_unused_indexes; +---------------+-------------+--------------+ | object_schema | object_name | index_name | +---------------+-------------+--------------+ | new_feature | t1 | idx_log_time | | new_feature | t1 | idx_rank2 | +---------------+-------------+--------------+ 2 rows in set (0.00 sec)
第三, 检索指定数据库下面的表扫描信息,过滤出执行次数大于10的查询,
mysql> SELECT * FROM statement_analysis WHERE db='new_feature' AND full_scan = '*' AND exec_count > 10\G *************************** 1. row *************************** query: SHOW STATUS db: new_feature full_scan: * exec_count: 26 err_count: 0 warn_count: 0 total_latency: 74.68 ms max_latency: 3.86 ms avg_latency: 2.87 ms lock_latency: 4.50 ms rows_sent: 9594 rows_sent_avg: 369 rows_examined: 9594 rows_examined_avg: 369 rows_affected: 0 rows_affected_avg: 0 tmp_tables: 0 tmp_disk_tables: 0 rows_sorted: 0 sort_merge_passes: 0 digest: 475fa3ad9d4a846cfa96441050fc9787 first_seen: 2015-11-16 10:51:17 last_seen: 2015-11-16 11:28:13 *************************** 2. row *************************** query: SELECT `state` , `round` ( SUM ... uration (summed) in sec` DESC db: new_feature full_scan: * exec_count: 12 err_count: 0 warn_count: 12 total_latency: 16.43 ms max_latency: 2.39 ms avg_latency: 1.37 ms lock_latency: 3.54 ms rows_sent: 140 rows_sent_avg: 12 rows_examined: 852 rows_examined_avg: 71 rows_affected: 0 rows_affected_avg: 0 tmp_tables: 24 tmp_disk_tables: 0 rows_sorted: 140 sort_merge_passes: 0 digest: 538e506ee0075e040b076f810ccb5f5c first_seen: 2015-11-16 10:51:17 last_seen: 2015-11-16 11:28:13 2 rows in set (0.01 sec)
第四, 同样继续上面的,过滤出有临时表的查询,
mysql> SELECT * FROM statement_analysis WHERE db='new_feature' AND tmp_tables > 0 ORDER BY tmp_tables DESC LIMIT 1\G *************************** 1. row *************************** query: SELECT `performance_schema` . ... name` . `SUM_TIMER_WAIT` DESC db: new_feature full_scan: * exec_count: 2 err_count: 0 warn_count: 0 total_latency: 87.96 ms max_latency: 59.50 ms avg_latency: 43.98 ms lock_latency: 548.00 us rows_sent: 101 rows_sent_avg: 51 rows_examined: 201 rows_examined_avg: 101 rows_affected: 0 rows_affected_avg: 0 tmp_tables: 332 tmp_disk_tables: 15 rows_sorted: 0 sort_merge_passes: 0 digest: ff9bdfb7cf3f44b2da4c52dcde7a7352 first_seen: 2015-11-16 10:24:42 last_seen: 2015-11-16 10:24:42 1 row in set (0.01 sec)
可以看到上面查询详细的详细,再也不用执行show status 手工去过滤了。
第五, 检索执行次数排名前五的语句,
mysql>SELECT statement,total FROM user_summary_by_statement_type WHERE `user`='root' ORDER BY total DESC LIMIT 5; +-------------------+-------+ | statement | total | +-------------------+-------+ | jump_if_not | 17635 | | freturn | 3120 | | show_create_table | 289 | | Field List | 202 | | set_option | 190 | +-------------------+-------+ 5 rows in set (0.01 sec)
示例我就写这么多了,详细的去看使用手册并且自己摸索去吧。
以上就是MySQL5.7SYS系统SCHEMA_MySQL的内容,更多相关内容请关注PHP中文网(www.php.cn)!

MySQL is suitable for beginners to learn database skills. 1. Install MySQL server and client tools. 2. Understand basic SQL queries, such as SELECT. 3. Master data operations: create tables, insert, update, and delete data. 4. Learn advanced skills: subquery and window functions. 5. Debugging and optimization: Check syntax, use indexes, avoid SELECT*, and use LIMIT.

MySQL efficiently manages structured data through table structure and SQL query, and implements inter-table relationships through foreign keys. 1. Define the data format and type when creating a table. 2. Use foreign keys to establish relationships between tables. 3. Improve performance through indexing and query optimization. 4. Regularly backup and monitor databases to ensure data security and performance optimization.

MySQL is an open source relational database management system that is widely used in Web development. Its key features include: 1. Supports multiple storage engines, such as InnoDB and MyISAM, suitable for different scenarios; 2. Provides master-slave replication functions to facilitate load balancing and data backup; 3. Improve query efficiency through query optimization and index use.

SQL is used to interact with MySQL database to realize data addition, deletion, modification, inspection and database design. 1) SQL performs data operations through SELECT, INSERT, UPDATE, DELETE statements; 2) Use CREATE, ALTER, DROP statements for database design and management; 3) Complex queries and data analysis are implemented through SQL to improve business decision-making efficiency.

The basic operations of MySQL include creating databases, tables, and using SQL to perform CRUD operations on data. 1. Create a database: CREATEDATABASEmy_first_db; 2. Create a table: CREATETABLEbooks(idINTAUTO_INCREMENTPRIMARYKEY, titleVARCHAR(100)NOTNULL, authorVARCHAR(100)NOTNULL, published_yearINT); 3. Insert data: INSERTINTObooks(title, author, published_year)VA

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 steps to build a MySQL database include: 1. Create a database and table, 2. Insert data, and 3. Conduct queries. First, use the CREATEDATABASE and CREATETABLE statements to create the database and table, then use the INSERTINTO statement to insert the data, and finally use the SELECT statement to query the data.

MySQL is suitable for beginners because it is easy to use and powerful. 1.MySQL is a relational database, and uses SQL for CRUD operations. 2. It is simple to install and requires the root user password to be configured. 3. Use INSERT, UPDATE, DELETE, and SELECT to perform data operations. 4. ORDERBY, WHERE and JOIN can be used for complex queries. 5. Debugging requires checking the syntax and use EXPLAIN to analyze the query. 6. Optimization suggestions include using indexes, choosing the right data type and good programming habits.


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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

Zend Studio 13.0.1
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment