Home > Database > Mysql Tutorial > body text

【mysql】关于删除数据的一个小技巧

WBOY
Release: 2016-06-07 15:52:24
Original
966 people have browsed it

当一个表很大时,如果直接使用DELETE语句可能会花比较长的时间。 在不确定要删除的数据是否存在与表中时,可以先select一条记录看看是否有数据返回,(如SELECT 1 FROM tbl WHERE dt BETWEEN '2013-05-01' AND '2013-07-01' LIMIT 1; 这个加了LIMIT的查询语句

当一个表很大时,如果直接使用DELETE语句可能会花比较长的时间。

在不确定要删除的数据是否存在与表中时,可以先select一条记录看看是否有数据返回,(如SELECT 1 FROM tbl WHERE dt BETWEEN '2013-05-01' AND '2013-07-01' LIMIT 1;这个加了LIMIT的查询语句一般用时很短)。如果确实有数据,再去执行DELETE操作。

另外,一次DELETE操作影响的数据范围尽可能的小,以避免其他的较为重要的操作出现长时间的等待;因此可以把DELETE操作细分成n次执行,将MySQL服务器的原本要一次承受的负担分摊到几次执行操作中。

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template