SQL
AخA
SELECT
page_title,
SUBSTRING(old_text, 1, 200) AS snippet
FROM
page
JOIN revision ON page_id = rev_page
JOIN text ON old_id = rev_text_id
WHERE
page_namespace = 0
AND BINARY old_text REGEXP '[^\\.\\!\\?]\\s+(Januari|Februari|Maart|April|Mei|Juni|Juli|Augustus|September|Oktober|November|December)'
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.
All SQL code is licensed under CC0 License.