


MySQL View Query Performance Discrepancy
Problem:
A database table containing approximately 100,000 user records exhibits a significant performance difference between a direct query and one using a view. The query directly accessing the table has a plan cost of 5200, while the query accessing the view has a plan cost of 100,000.
Explanation:
The performance discrepancy is caused by the algorithm used to perform the view. The view in this case uses the "temptable" algorithm, which retrieves all rows from the underlying table into a temporary table before performing the filtering operation specified by the WHERE clause. In contrast, the direct query uses the "merge" algorithm, which performs the filtering operation directly on the indexed data of the underlying table.
The WHERE Clause in Views
The WHERE clause in a view is applied after the view retrieves all the rows from the underlying table. This means that even though the view may have been created with a specific filter criteria, the WHERE clause in a query against the view is still applied to each row retrieved from the temporary table.
Resolution
To fix this performance issue, the view should be created using the "merge" algorithm. This can be achieved by using the "materialized view" option. A materialized view is a pre-computed copy of a view. It is stored in a physical table, so that queries against the materialized view can use the "merge" algorithm for filtering.
Example:
To create a materialized view using the "merge" algorithm, use the following syntax:
<code class="sql">CREATE MATERIALIZED VIEW vw_users AS SELECT state, COUNT(*) AS cnt FROM users GROUP BY state;</code>
Once the materialized view has been created, queries against it will have a lower plan cost and improved performance.
The above is the detailed content of Why Does a View Query Exhibit a Performance Discrepancy Compared to a Direct Table Query?. For more information, please follow other related articles on the PHP Chinese website!

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)


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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
