select rd_from, page_title, rd_title, count(*) as total
from redirect ,... |
3 years ago |
select rd_from, page_title, rd_title, count(*) as total
from redirect ... |
3 years ago |
select rd_from, rd_title, count(*) as total
from redirect
group by... |
3 years ago |
select rd_from, rd_title, count(*) as total
from redirect
group by rd_from... |
3 years ago |
select rd_from, count(*) as total
from redirect
group by rd_from order by... |
3 years ago |
select rd_title, count(*) as total
from redirect
group by rd_title order... |
3 years ago |
select rd_title, count(*) as total from redirect where total > 100 group by... |
3 years ago |
select rd_title, count(*) as total from redirect group by rd_title order by... |
3 years ago |