在many-to-many的中间表中配置索引

阅读更多

	
	
		
	



	
	



customer(1)-(n)account(n)-card(n)
三张表分别:30万,60万,90万记录
Select *
 From card a,Account b,account_card c ,customer d
  Where a.card_number = '4518100348128286' And a.Id=c.card_id And b.Id=c.account_id And d.Id=a.customer_id
  And b.customer_Id = d.Id

这个查询如果在中间表account_card上不加索引将需要10s钟才能完成,加上索引后0.046s就搞定了。当然card_number肯定是得有索引的。

你可能感兴趣的:(DB2,C,C++,C#,SQL)