优化的MySQL 5个表的连接
我目前有5台:优化的MySQL 5个表的连接
trialSum -------------
id total
-------------
1 2000
2 1000
3 500
trialLand
-------------
id total
-------------
1 1000
2 250
3 500
trialImp
-------------
id total
-------------
2 250
trialBldg
-------------
id total
-------------
1 1000
2 500
trial
---------------------
id name info
---------------------
1 xxxxx xxxxx
2 xxxxx xxxxx
3 xxxxx xxxxx
4 xxxxx xxxxx
该试验台将拥有最多的项目进入,所有的“ID”字段匹配彼此。每个表格中将有超过7000个条目。我想创建一个大表看起来像:
trial ----------------------------------------------------------------------
id name info totalSum totalLand totalImp totalBldg
----------------------------------------------------------------------
1 xxxxx xxxxx 2000 1000 0 1000
2 xxxxx xxxxx 1000 250 250 500
3 xxxxx xxxxx 500 500 0 0
4 xxxxx xxxxx 0 0 0 0
如果我这样做,有4个左连接,它需要在40分钟内完成一个巨大的MySQL查询。必须有一个更简单的方法。谢谢!
回答:
我会说,左连接确实是一个很好的方法来做到这一点。你在这些id列上有索引吗?尝试添加索引,速度应该会提高。请记住使用EXPLAIN来确认索引正在被正确使用。更多关于EXPLAIN http://www.dbtuna.com/article.asp?id=14。
以上是 优化的MySQL 5个表的连接 的全部内容, 来源链接: utcz.com/qa/267352.html