SELECT actor_name, count(*) from revision
join actor on rev_actor =... |
10 months ago |
select actor_name, count(rev_id)
from revision
inner join actor
on actor_id... |
10 months ago |
select actor_name, count(rev_id)
from revision
inner join actor
on actor_id... |
10 months ago |
select actor_name, count(rev_id)
from revision
inner join actor
on actor_id... |
10 months ago |
select rev_user_text, count(rev_user_text)
from revision
where... |
10 months ago |
USE arwiki_p;
select rev_user_text, count(rev_user_text)
from revision... |
10 months ago |