search
HomeDatabaseMysql TutorialSome common misunderstandings about Mysq

Common misunderstandings

    1. ##count(1) and count(primary_key) are better than count(*)

    In order to count the number of records, many people use count(1) and count(primary_key) instead of count(*). They think this performs better. In fact, this is a misunderstanding. For some scenarios, this may result in worse performance, because the database has made some special optimizations for the count(*) counting operation.
      1. count(column) and count(*) are the same

      This misunderstanding even exists among many senior engineers Or it is common among DBAs, and many people take it for granted. In fact, count(column) and count(*) are completely different operations and have completely different meanings.
      count(column) indicates how many records in the result set the column field is not empty
      count(*) indicates how many records there are in the entire result set
        1. Selecting a,b from... can allow the database to access less data than selecting a,b,c from...

        This misunderstanding is mainly It exists among a large number of developers. The main reason is that they don't know much about the storage principles of the database.
        In fact, most relational databases are stored in rows, and data access operations are based on a fixed-size IO unit (called block or page). Generally 4KB, 8KB... Most of the time, multiple rows are stored in each IO unit, and each row stores all the fields of the row (except for special types of fields such as lob).
        So, whether we take one field or multiple fields, the amount of data that the database needs to access in the table is actually the same.
        Of course, there are exceptions, that is, our query can be completed in the index. That is to say, when only two fields a and b are fetched, there is no need to return the table, and the field c is not In the index used, it is necessary to return to the table to obtain its data. In this case, the IO volume between the two will be quite different.
          1. order by must require a sorting operation

          We know that the index data is actually ordered, if our If the required data is in the same order as an index, and our query is executed through this index, the database will generally omit the sorting operation and return the data directly, because the database knows that the data already meets our sorting needs.
          In fact, using indexes to optimize SQL with sorting requirements is a very important optimization method
          Extended reading: Analysis of the implementation of ORDER BY in MySQL, the basic implementation principle of GROUP BY in MySQL and The basic implementation principle of MySQL DISTINCT has a more in-depth analysis in these three articles, especially the first one
            1. If there is filesort in the execution plan, the disk will be processed File sorting

            We can’t blame us for this misunderstanding, but it’s because of the wording problem used by MySQL developers. filesort is the information we may see displayed in the "Extra" column when we use the explain command to view the execution plan of a SQL.
            In fact, as long as a SQL statement requires a sorting operation, "Using filesort" will be displayed, which does not mean that there will be a file sorting operation.
            Extended reading: Understanding filesort in the MySQL Explain command output, I have a more detailed introduction here
            • Basic principles

              1. As few joins as possible

              The advantage of MySQL is simplicity, but this is actually its disadvantage in some aspects. The MySQL optimizer is highly efficient, but due to its limited amount of statistical information, there is more possibility of deviations in the optimizer's work process. For complex multi-table Join, on the one hand, due to its limited optimizer, and on the other hand, insufficient efforts have been made in Join, so the performance is still far behind that of relational database predecessors such as Oracle. But if it is a simple single-table query, this gap will be very small and even better than these database predecessors in some scenarios.
                1. Sort as little as possible

                Sorting operations will consume more CPU resources, so reducing sorting can reduce cache hits In scenarios with sufficient IO capabilities such as high rates, it will greatly affect the response time of SQL.
                For MySQL, there are many ways to reduce sorting, such as:
                • The misunderstanding mentioned above is to optimize by using index to sort

                • Reduce the number of records participating in sorting

                • Do not sort data unless necessary

                • Avoid using resource-consuming operations. SQL statements with DISTINCT, UNION, MINUS, INTERSECT, ORDER BY will start the SQL engine execution , a resource-intensive sorting (SORT) function. DISTINCT requires one sorting operation, while others require at least two sorting operations

                The above is the detailed content of Some common misunderstandings about Mysq. For more information, please follow other related articles on the PHP Chinese website!

                Statement
                The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
                PHP基础教程:从入门到精通PHP基础教程:从入门到精通Jun 18, 2023 am 09:43 AM

                PHP是一种广泛使用的开源服务器端脚本语言,它可以处理Web开发中所有的任务。PHP在网页开发中的应用广泛,尤其是在动态数据处理上表现优异,因此被众多开发者喜爱和使用。在本篇文章中,我们将一步步地讲解PHP基础知识,帮助初学者从入门到精通。一、基本语法PHP是一种解释性语言,其代码类似于HTML、CSS和JavaScript。每个PHP语句都以分号;结束,注

                学习Go语言变量的基础知识学习Go语言变量的基础知识Mar 22, 2024 pm 09:39 PM

                Go语言是一种由Google开发的静态类型、编译型语言,其简洁、高效的特性受到了广泛的开发者关注和喜爱。在学习Go语言的过程中,熟练掌握变量的基础知识是至关重要的一步。本文将通过具体的代码示例来讲解Go语言中变量的定义、赋值、类型推断等基础知识,帮助读者更好地理解和掌握这些知识点。在Go语言中,定义一个变量可以使用关键字var,即var变量名变量类型的格

                PHP基础入门:如何使用echo函数输出文本内容PHP基础入门:如何使用echo函数输出文本内容Jul 30, 2023 pm 05:38 PM

                PHP基础入门:如何使用echo函数输出文本内容在PHP编程中,经常需要向网页上输出一些文本内容,这时就可以使用echo函数。本文将介绍如何使用echo函数输出文本内容,并提供一些示例代码。在开始之前,首先要确保你已经安装了PHP,并且配置了运行环境。如果还没有安装PHP,你可以在PHP官方网站(https://www.php.net)上下载最新的稳定版本。

                C语言函数详解:基础到进阶,全面解析函数的使用C语言函数详解:基础到进阶,全面解析函数的使用Feb 18, 2024 pm 02:25 PM

                C语言函数大全:从基础到进阶,详解函数的使用方法,需要具体代码示例简介:C语言是一种广泛使用的编程语言,其强大的功能和灵活性使它成为许多开发人员的首选。在C语言中,函数是一个重要的概念,它能够将一段代码组合成一个独立的模块,提高了代码的重用性和可维护性。本文将从基础开始介绍C语言函数的使用方法,并逐步进阶,帮助读者掌握函数编写的技巧。一、函数的定义与调用在C

                不要错过立即获取免费基础 C# 认证的机会来自Microsoft不要错过立即获取免费基础 C# 认证的机会来自MicrosoftSep 01, 2023 pm 12:45 PM

                召集所有C#开发人员!Microsoft和非营利组织freeCodeCamp宣布推出新的全球免费基础C#认证。该认证旨在帮助所有级别的开发人员学习C#的基础知识,C#是一种用于创建各种应用程序的流行编程语言,您可以在LinkedIn配置文件中显示它。该认证包括35小时的MicrosoftLearn培训课程,以及在freeCodeCamp上举办的80个问题的考试。本课程涵盖变量、数据类型、控制结构和面向对象编程等主题。“我们的基础C#认证正好提供了这一点–证明了您为掌握这种多功

                PHP函数用法:从基础到进阶PHP函数用法:从基础到进阶Jun 15, 2023 pm 11:11 PM

                PHP是一种广泛使用的服务器端脚本语言,用于开发动态网站、Web应用程序和其他互联网服务。在开发PHP应用程序过程中,使用函数可以帮助简化代码、提高代码重用性和降低开发成本等。本文将介绍PHP函数的基础用法和进阶用法。一、PHP函数的基础用法1.定义函数在PHP中,使用function关键字来定义函数,例如:functiongreet($name){

                PHP学习笔记:基础语法及变量定义PHP学习笔记:基础语法及变量定义Oct 09, 2023 am 08:03 AM

                PHP学习笔记:基础语法及变量定义在如今的互联网时代,PHP(HypertextPreprocessor)作为一种广泛使用的服务器脚本语言,被越来越多的开发者所青睐。本篇文章将为大家介绍PHP的基础语法和变量的定义,并提供具体的代码示例,帮助初学者更好地理解和掌握。一、PHP的基础语法PHP代码的标记在PHP代码中,我们常常使用“<?php”和“?&

                PHP中的云计算基础PHP中的云计算基础May 23, 2023 pm 12:40 PM

                随着互联网的发展,云计算技术逐渐成为了企业开展业务的首选方案。在这个过程中,PHP作为一种优秀的编程语言,在云计算中扮演着不可替代的角色。那么,PHP在云计算中的基础有哪些呢?一、云计算概述云计算是一种基于互联网的计算方式,通过网络来提供和分享计算资源和服务。它将计算能力、存储能力和应用能力等资源集成到一起,用户可按需、弹性地使用它们,从而降低了企业的成本和

                See all articles

                Hot AI Tools

                Undresser.AI Undress

                Undresser.AI Undress

                AI-powered app for creating realistic nude photos

                AI Clothes Remover

                AI Clothes Remover

                Online AI tool for removing clothes from photos.

                Undress AI Tool

                Undress AI Tool

                Undress images for free

                Clothoff.io

                Clothoff.io

                AI clothes remover

                AI Hentai Generator

                AI Hentai Generator

                Generate AI Hentai for free.

                Hot Article

                R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
                2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
                Repo: How To Revive Teammates
                1 months agoBy尊渡假赌尊渡假赌尊渡假赌
                Hello Kitty Island Adventure: How To Get Giant Seeds
                1 months agoBy尊渡假赌尊渡假赌尊渡假赌

                Hot Tools

                Dreamweaver Mac version

                Dreamweaver Mac version

                Visual web development tools

                VSCode Windows 64-bit Download

                VSCode Windows 64-bit Download

                A free and powerful IDE editor launched by Microsoft

                MinGW - Minimalist GNU for Windows

                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.

                PhpStorm Mac version

                PhpStorm Mac version

                The latest (2018.2.1) professional PHP integrated development tool

                SAP NetWeaver Server Adapter for Eclipse

                SAP NetWeaver Server Adapter for Eclipse

                Integrate Eclipse with SAP NetWeaver application server.