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
1-Byte
.
Toggle Highlighting
SQL
with recursive cte (depth, cl_from, cl_to,cl_type) as ( select 0, cl_from, cl_to, cl_type from categorylinks where cl_from = 78345 union all select cte.depth+1, p.cl_from, p.cl_to, p.cl_type from categorylinks p inner join cte on p.cl_from = cte.cl_to where depth < 3 ) select * from cte;
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...