Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Gluo88
.
Originally, Fork of zhwiki RFX Eligible Voters by SCP-2000 a fix in part 3: all_revision.rev_timestamp < @PRIOR_120_VOTE_TIME (formerly: all_revision.rev_timestamp < @VOTE_TIME) 解任投票联署提出或上任投票开始120天前,编辑至少500次
Toggle Highlighting
SQL
/* debugging I was able to complete the above SQL query as seen in https://quarry.wmcloud.org/history/84807/911494/884555. However, when I run the same query again at https://quarry.wmcloud.org/query/84807. I got the error "OperationalError('table resultsets already exists')". How should I fix the error? I guess that resultsets may be a temporary table that was produced in running my previous SQL query. -- Check the current read-only status SHOW GLOBAL VARIABLES LIKE 'read_only'; -- Disable read-only mode SET GLOBAL read_only = OFF; -- Perform your operations DROP TABLE IF EXISTS resultsets; -- Re-enable read-only mode if needed SET GLOBAL read_only = ON; */ -- USE zhwiki_p; -- Check the current read-only status SHOW GLOBAL VARIABLES LIKE 'read_only'; -- SHOW TABLES FROM zhwiki_p; SELECT page.page_id AS article_id, page.page_title AS article_title FROM page LEFT JOIN page AS talk_page ON talk_page.page_namespace = 1 AND talk_page.page_title = page.page_title WHERE page.page_namespace = 0 AND talk_page.page_id IS NULL LIMIT 100;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...