我有以下疑问:
select *
from
( select id,sum(amt) amt from table_t group by id
) t inner join table_v v on (v.id = t.id)
order by t.amt desc;
表_t没有指数,有738 000个浏览量,表_v有毛病指数,有158 000个浏览量。
目前,在10秒中,调查得出结果。
The explain query plan shows a full table scan.. How can I improve the performance here ?
如果加上一张表格的补贴指数,则会有所帮助。 因为我是在一个分局使用吗?