View List of Unique Contributers
Question: How can I get a list of the people contributing to my wiki?
Answer: Create the following query:
SELECT distinct w.revision_author,
m.username, m.screen_name, m.email
FROM
exp_wiki_revisions w, exp_members m
where
w.revision_author = m.member_id
and wiki_id = '1'