您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何解決查詢結果集很小但Created_tmp_disk_tables不斷增加的問題,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
create table tb(id int , va varchar(10));
insert into tb(id, va) values (1, 'Created_tmp_disk_tables');
Some query conditions prevent the use of an in-memory temporary table, in which case the server uses an on-disk table instead:
Presence of a BLOB or TEXT column in the table. This includes user-defined variables having a string value because they are treated as BLOB or TEXT columns, depending on whether their value is a binary or nonbinary string, respectively.
# BLOB、TEXT列, 或者自定義變量被按BLOB、TEXT類型處理
alter table tb modify va text;
select * from (select * from tb) t;
Presence of any string column with a maximum length larger than 512 (bytes for binary strings, characters for nonbinary strings) in the SELECT list, if UNION or UNION ALL is used.
# 列長度定義超過512,在union時
alter table tb modify va varchar(513);
select * from tb union select * from tb;
The SHOW COLUMNS and DESCRIBE statements use BLOB as the type for some columns, thus the temporary table used for the results is an on-disk table.
# 查詢表的列信息時。這個比較坑
SHOW columns from tb ;
DESCRIBE tb;
上述就是小編為大家分享的如何解決查詢結果集很小但Created_tmp_disk_tables不斷增加的問題了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。