la consulta principal que tengo es:
Código PHP:
$consul = "SELECT * FROM valorreal
INNER JOIN valoracumulado ON valorreal.categorias = valoracumulado.categorias
AND valorreal.ano = valoracumulado.ano
AND valorreal.mes = valoracumulado.mes
AND valorreal.tipo = valoracumulado.tipo
WHERE valorreal.ano='$anio' AND valorreal.mes='$mess' AND valorreal.tipo='asdf'";
$resul = mysql_query ($consul) or die ("Error en consulta:".mysql_error());
while ($filas = mysql_fetch_array($resul)) {
y tengo que agregarle esta:
Código PHP:
SELECT * FROM categorias WHERE nombre='asdf'
desde ya muchas gracias!