我还是 sql 新手,我的代码运行时间太长。
这是我的代码
SELECT SUM(b.matchusertime)
FROM(
SELECT fulldate, realmatchid, isclanmatch
FROM go_int.int_match
WHERE (fulldate BETWEEN '2013-06-30' AND '2013-07-27') AND isclanmatch = 0
GROUP BY realmatchid)a
INNER JOIN go_int.int_match_user b
ON b.realmatchid = a.realmatchid
WHERE (b.fulldate BETWEEN '2013-06-30' AND '2013-07-27')
我正在尝试做的是从匹配表中获取不在氏族匹配中的用户 ID,并将其匹配到 match_user 表中,以找出非氏族匹配的总持续时间。
但是每次我运行查询时,都需要 45 分钟或更长时间,并且由于超时问题等原因没有返回结果。