SQL
x
use wikidatawiki_p;
SELECT CURRENT_DATE;
SELECT
CONCAT('Q', term_entity_id) as item,
CONCAT('D', term_language) as tr,
CONCAT('"', term_text, '"') as current_desc
from wb_terms
WHERE term_entity_type = 'item'
AND term_type = 'description' # 'label', 'description', 'alias'
AND term_text LIKE '%।'
GROUP BY term_language
ORDER BY term_language DESC;
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.