MySQL---如何對 count 函數進行優化

select a.id,count(*) count from a join b ON a.id = b.id 換成web select a.id,b.count from a join (select count(*) count from b) b on a.id = b.id
相關文章
相關標籤/搜索