本文實(shí)例講述了mysql使用臨時(shí)表加速查詢的方法。分享給大家供大家參考。具體分析如下:
使用mysql臨時(shí)表,有時(shí)是可以加速查詢的,下面就為您詳細(xì)介紹使用mysql臨時(shí)表加速查詢的方法。
把表的一個(gè)子集進(jìn)行排序并創(chuàng)建mysql臨時(shí)表,有時(shí)能加速查詢。它有助于避免多重排序操作,而且在其他方面還能簡化優(yōu)化器的工作。例如:
復(fù)制代碼 代碼如下:select cust.name,rcvbles.balance,……other columns
select cust.name,rcvbles.balance,……other columns
from cust,rcvbles
where cust.customer_id = rcvlbes.customer_id
and rcvblls.balance>0
and cust.postcode>98000
order by cust.name
如果這個(gè)查詢要被執(zhí)行多次而不止一次,可以把所有未付款的客戶找出來放在一個(gè)臨時(shí)文件中,并按客戶的名字進(jìn)行排序:
復(fù)制代碼 代碼如下:select cust.name,rcvbles.balance,……other columns
select cust.name,rcvbles.balance,……other columns
from cust,rcvbles
where cust.customer_id = rcvlbes.customer_id
and rcvblls.balance>0
order by cust.name
into temp cust_with_balance
然后以下面的方式在臨時(shí)表中查詢:
復(fù)制代碼 代碼如下:select * from cust_with_balance
where postcode>98000
臨時(shí)表中的行要比主表中的行少,而且物理順序就是所要求的順序,減少了磁盤i/o,所以查詢工作量可以得到大幅減少。
注意:臨時(shí)表創(chuàng)建后不會反映主表的修改。在主表中數(shù)據(jù)頻繁修改的情況下,注意不要丟失數(shù)據(jù)。
希望本文所述對大家的mysql數(shù)據(jù)庫程序設(shè)計(jì)有所幫助。
更多信息請查看IT技術(shù)專欄