SQL
AخA
select distinct concat("File:", page_title) as Dateiname
from page
left join categorylinks
on page_id = cl_from
where (page_title like "%Seeadler%")
GROUP BY page_title
#and (cl_to not in ("Haliaeetus albicilla in Germany"))
HAVING categorylinks.cl_to not like "Haliaeetus albicilla%"
order by 1;
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.