SQL
AخA
use hewiki_p;
select substr(el_to, 1,locate('/',el_to)), count(*) from externallinks where substr(el_to, 1,locate('/',el_to)) like '%/m.%/%'
group by substr(el_to, 1,locate('/',el_to));
select substr(el_to, 1,locate('/',el_to, 9)), count(*) from externallinks where substr(el_to, 1,locate('/',el_to, 9)) like '%.m.%/%'
group by substr(el_to, 1,locate('/',el_to, 9));
select substr(el_to, 1,locate('/',el_to, 9)), count(*) from externallinks where substr(el_to, 1,locate('/',el_to, 9)) like '%/mobile.%/%'
group by substr(el_to, 1,locate('/',el_to, 9));
select substr(el_to, 1,locate('/',el_to, 9)), count(*) from externallinks where substr(el_to, 1,locate('/',el_to, 9)) like '%.mobile.%/%'
group by substr(el_to, 1,locate('/',el_to, 9));
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.