Moderators are special, privileged users who should serve as an example to the rest of us. Therefore, it is natural to want to query behaviors and statistics about these model users, Like I did, for example, when researching this question.
Unfortunately, there is no way to determine moderators in the SEDE data set! We are left with hand-coding the current mods like in this query. This is hardly a good solution and does not port if we want to quickly switch the query from, say, SO to Super User.
Please provide a Moderators table, listing the ID's of that site's moderators. (Or, alternatively, add a flag-column to the Users table, but this would be less efficient.)
As nhinkle notes, this information is already in the API. Please add it to SEDE, as well.
For reference, the identities of the mods is by no means secret -- being posted on each site's About page.
It's just very clunky to get this list inside a query. Currently, you can kludge a list of moderators by navigating to an About page and executing this javascript:
$("#mainbar-full div.content-page div a[href*='/users/']").map ( function () {
return parseInt (this.href.replace (/.+\/users\/(\d+)\/.+$/, "$1"), 10);
} ).get ();
Alternatively, parse the return from the API.