select
page_title,
page_id,
cl_from,
cl_to,
cl_type,
cat_id,
... |
5 years ago |
select
page_title,
page_id,
cl_from,
cl_to,
cl_type
from... |
5 years ago |
select *
from categorylinks
join page on page_id = cl_from
where... |
5 years ago |
select * from categorylinks limit 10; |
5 years ago |
select * from page where page_namespace=14 limit 10; |
5 years ago |
select page_namespace, page_title
from categorylinks
inner join page on... |
5 years ago |