SQL
AخA
use commonswiki_p;
select */*
concat("[[File:", replace(rc_title, "_", " "), "]]") as "ファイルリンク",
concat("[[User:", rc_user_text, "]]") as "アップロード者",
date(rc_timestamp) as "日時"*/
from geo_tags
inner join(
select rc_user_text, rc_title, rc_cur_id, rc_timestamp
from recentchanges
where rc_log_type = "upload"
limit 10000
) as newfile on gt_page_id = rc_cur_id
where
gt_globe = "earth" and
(
((gt_lon between 139.131 and 146.030) and (gt_lat between 20.879 and 45.737)) or
((gt_lon between 131.199 and 139.131) and (gt_lat between 18.229 and 38.668)) or
((gt_lon between 129.023 and 131.199) and (gt_lat between 21.657 and 34.913)) or
((gt_lon between 122.739 and 129.023) and (gt_lat between 21.821 and 33.073))
)
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.