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
相关文章
相关标签/搜索