一个单引号引发的MYSQL性能问题分析
刚刚我们说过了,生活中难免会有一些不如意,比如,我们用一个字符串类型的字段来作为主键,表面上,这太不如意了,然而,事实也证明这是有用的。
对于大型的系统而言,Oracle,SQLServer无疑是最好的选择,可看看现在越来越多的小网站,他们没有自己的服务器,只是买别人的空间和数据库,但这种小型的数据库在性能上当然和大型数据库没有对比性,但小型的数据库也要对自己的优化方式,今天和大家分享Mysql中加没加单引号的巨大区别,对于MYSQL性能优化很有意义。刚刚我们说过了,生活中难免会有一些不如意,比如,我们用一个字符串类型的字段来作为主键,表面上,这太不如意了,然而,事实也证明这是有用的。问题也就出来了,当在查询语句中对该字段值加上单引号和不加查询耗时相差百倍!
测试表:
代码如下:
CREATE TABLE `foo` ( `key` varchar(10) NOT NULL, `time` int(11) NOT NULL, PRIMARY KEY (`key`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;
然后插入30多万条数据,然后执行下面的SQL语句:
代码如下:
SELECT *FROM `foo`WHERE `key` =1293322797
查询花费 0.1288 秒,大约花费这么久的时间,然后,给1293322797加上单引号:
代码如下:
SELECT *FROM `foo`WHERE `key` ='1293322797'
查询花费 0.0009 秒,基本上相差100倍!!!也就是说不加单引号MYSQL性能损失了100倍,很震撼的比例!
后来用EXPLAIN分别跑了一下上面两条语句,见下面两张图:
没有单引号时
有单引号时
很明显,不使用单引号没有用上主索引,并进行了全表扫描,使用单引号就能使用上索引了。
后来我用大于分别进行了测试,返回的结果集相同,而他们的耗时和上面一样,用EXPLAIN测试,也和上面一样
代码如下:
SELECT *FROM `foo`WHERE `key` >1293322797SELECT *FROM `foo`WHERE `key` >'1293322797'
加单引号和不加单引号就是这么大的差别!就是会对mysql性能产生这么大的影响。
再后来,我将字段`key`换成INT类型,这时候,加不加单引号,就没有什么差别了,EXPLAIN显示他们都同样能够用上主索引,只是key_len变短了。
就是这些,综上所述,我们在写SQL查询的时候还是不厌其烦的加上单引号吧,似乎那没有坏处。

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

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

How to optimize the performance of SQLServer and MySQL so that they can perform at their best? Abstract: In today's database applications, SQLServer and MySQL are the two most common and popular relational database management systems (RDBMS). As the amount of data increases and business needs continue to change, optimizing database performance has become particularly important. This article will introduce some common methods and techniques for optimizing the performance of SQLServer and MySQL to help users take advantage of

I don’t know what settings were modified today. When I was writing a program in vim, I found that neither single quotes nor double quotes could be typed. The effect of double quotation marks is ¨¨, which will cause a program error! The reason for this problem is that the keyboard layout does not match the actual situation and needs to be modified. Solution to single/double quotation marks that cannot be typed: (Note: If your desktop is in English, please translate it yourself.) 1. Click System-->Select Management-->Select Keyboard and change American International to American. English style! 2. Click System-->Select Preferences-->Select Keyboard. Check whether the settings are consistent with the picture below: Then reopen the vim tool and the problem should be solved!

In the MySQL database, indexing is a very important means of performance optimization. When the amount of data in the table increases, inappropriate indexes can cause queries to slow down or even cause database crashes. In order to improve database performance, indexes need to be used rationally when designing table structures and query statements. Composite index is a more advanced indexing technology that improves query efficiency by combining multiple fields as indexes. In this article, we will detail how to improve MySQL performance by using composite indexes. What is composite index composite

In PHP, single quotes and double quotes are two common string wrapping methods, and they have different characteristics and rules when used. This article will analyze the usage rules of single quotes and double quotes respectively, and provide specific code examples to help readers better understand their differences. 1. Rules for using single quotes: The content within single quotes will be output as is, and the variables or escape characters will not be parsed. This means that within single quotes, PHP recognizes the string as an ordinary sequence of characters and does not do anything with the content. within single quotes

In MySQL, transaction isolation level is a very important concept, which determines how the database handles concurrent access to data when multiple transactions are executed at the same time. In practical applications, we need to choose the appropriate isolation level based on specific business needs to improve the performance of MySQL. First, we need to understand MySQL’s four transaction isolation levels: READ-UNCOMMITTED, READ-COMMITTED, REPEATABLE-READ and SERIALIZA

MySQL is a widely used open source relational database management system. Good performance is crucial when dealing with huge data volumes. MyISAM index cache is a very important feature of MySQL, which can greatly improve the speed and performance of data reading. In this article, we will take a deep dive into how the MyISAM index cache works and how to configure and optimize the index cache to improve MySQL performance. What is MyISAM index cache? MyISAM is a storage index in MySQL

MySQL is a widely used relational database management system. Due to its high performance, scalability and open source nature, it has become the first choice for many enterprises and individuals. However, as the amount of data continues to increase and the complexity of the data continues to increase, MySQL's performance problems begin to emerge. One of the important performance issues is query time. Query time refers to the time it takes for a MySQL query. The shorter the query time, the higher the performance of MySQL and the ability to handle more query requests. To address this problem, we can analyze the query time

As database applications become more and more complex, improving MySQL performance has become one of the more and more important tasks. In MySQL performance optimization, operating system optimization is one of the factors that cannot be ignored. Optimization of the operating system can help MySQL make better use of hardware resources and improve system stability and performance. In this article, we will explore how to optimize the operating system to improve MySQL performance. 1. Adjusting kernel parameters Adjusting kernel parameters is one of the basic methods of operating system optimization. Here are some important kernel parameter settings: Tuning Memory
