Wikipedia:Database queries: Difference between revisions

Content deleted Content added
m // Edit via WikiMirror
 
(25 intermediate revisions by 19 users not shown)
Line 1:
{{nutshell
{{shortcut|WP:SQL}}
|shortcut1=WP:DQ
 
|shortcut2=WP:SQL
{{nutshell|Queries can be run against the Wikipedia database in a variety of ways.}}
 
== Overview ==
 
Much of the data that makes up the Wikipedia encyclopaediaencyclopedia is stored in a [[SQL database]]. It can sometimes be useful to run queries against this database to extract information that is otherwise hard to find. For example:
 
* Articles with ''H.M.S.'' in their title that have not been edited for 12 months.
Line 11 ⟶ 12:
* All [[WP:Red link|red links]] on pages within the scope of a particular [[WP:WikiProject|WikiProject]]
 
Many simple queries can be run directly using the tools built into the [[MediaWiki]] package used by Wikipedia. Some of the most popular and useful queries are run regularly and can be found at [[Wikipedia:Database reports]]. If neither of these suits your query, you can [[Wikipedia:Request a query|request]] that someone run a query for you, or download your own copy of the database to work on.
 
== Using the MediaWiki tools ==
Line 19 ⟶ 20:
* [[Special:PrefixIndex|All pages with prefix]]
* [[Special:CategoryTree|Category tree]]
* [http[mw://www.mediawiki.org/wiki/API |MediaWiki API]] (see [[Special:ApiSandbox]])
 
== Queries that are already run regularly ==
Line 30 ⟶ 31:
And many other places.
 
== Requesting thatRun a query be run ==
SomeAll Wikipedians have the ability to run queries on a copy of the live database on the [[WP:Toolserver|toolserver]].Wikimedia Cloud YouServices|Wikimedia mayCloud requestVPS]] they do this atcalled [[tswiki:Query//quarry.wmflabs.org/ service]Quarry].
 
Users with both technical access to the database and the willingness to perform queries may be found by viewing the [https://wiki.toolserver.org/w/index.php?title=Special%3AListUsers&group=query-service&limit=50 list of query-service users].
 
== Request a query ==
CREATE TABLE `css_rank`(
* [[Wikipedia:Request a query]]
`rank_id` int(64) NOT NULL auto_increment,
`steamId` varchar(255) NOT NULL default '',
`nick` varchar(255) NOT NULL default '',
`kills` int(12) NOT NULL default '0',
`deaths` int(12) NOT NULL default '0',
`headshots` int(12) NOT NULL default '0',
`sucsides` int(12) NOT NULL default '0',
PRIMARY KEY (`rank_id`));
 
== See also ==
CREATE TABLE `css_rank`(
*[[wikitech:Nova Resource:Tools/Tools/Query service]]
`rank_id` int(64) NOT NULL auto_increment,
`steamId` varchar(255) NOT NULL default '',
`nick` varchar(255) NOT NULL default '',
`kills` int(12) NOT NULL default '0',
`deaths` int(12) NOT NULL default '0',
`headshots` int(12) NOT NULL default '0',
`sucsides` int(12) NOT NULL default '0',
PRIMARY KEY (`rank_id`));