HOLA,
ANDO PERDIDA D:
NECESITO SABER SI TENGO ESTA CONSULTA:
select count(sexo) as Total from poblacion union Select count(sexo) from poblacion where edad BETWEEN 0 and 4 union Select count(sexo) from poblacion where edad BETWEEN 5 and 11 union Select count(sexo) from poblacion where edad BETWEEN 12 and 19 union Select count(sexo) from poblacion where edad BETWEEN 20 and 29 union Select count(sexo) from poblacion where edad BETWEEN 30 and 39 union Select count(sexo) from poblacion where edad BETWEEN 40 and 49 union Select count(sexo) from poblacion where edad BETWEEN 50 and 59 union Select count(sexo) from poblacion where edad >= 60
PERO NECESITO QUE ESO COUNT SOLO SEAN DE CIERTO GRUPO
TABLA POBLACION
FOLIOVIV
FOLIOHOG
SEXO (1 = HOMBRE, 2 = MUJER)
EDAD
TABLA CONCENTRADO
FOLIOVIV
FOLIOHOG
ESTRATO (1,2,3 = MAS DE 2500 H, 4 = MENOS DE 2500 H)
INTENTO HACER UN INNER JOIN PARA QUE AL REALIZAR
LA CONSULTA SOLO SEA ENTRE LAS PRESONAS DE ESTRATO = 4
COMO DEBERIA HACER LE INNER JOIN?
ASI QUE CUENTE, PERO SOLO LOS QUE TIENE ESTRATO = 4
GRACIAS