因此,基本上我有一个快速和肮脏的附属系统。我有柱子
email
affiliate_id
recruiter_id现在,我想创建一个虚拟专栏来统计基于affiliate_id招聘的人数。
发布于 2014-09-06 10:06:56
select recruiter_id, count(*) as recruted
from your_table
group by recruiter_idhttps://stackoverflow.com/questions/25695810
复制相似问题