consulta sql simple, combina resultados y divide

Estoy tratando de conseguir2 cuentas de2 mesas y calcule el porcentaje como para un db MySQL:

select field_one, count(*) as COUNT_ONE from table1 group by field_one;

select other_field,count(*) as COUNT_TWO from table2 group by other_field;

Quiero combinar los resultados y tenerFINAL_COUNT=(COUNT_ONE/COUNT_TWO) * 100 por porcentaje?

Respuestas a la pregunta(1)

Su respuesta a la pregunta