MySQL Forums
Forum List  »  Spanish

error 1104
Posted by: alvaro salinas
Date: September 25, 2007 12:42AM

Tengo el Siguiente Query:

$cod=$_GET[codigo];
$result=mysql_query("
SELECT
det.numero_com as comprobante,
comp.fecha_com AS fecha,
det.detalle_co as detalle,
ifnull(det.debe_com, 0) AS debe,
ifnull(det.haber_com, 0) AS haber,
(SELECT SUM(ifnull(det.debe_com, 0)-ifnull(det.haber_com, 0))
FROM detcompb det
WHERE det.numero_com <= comprobante
AND det.codigo_ana = $cod
AND det.codigo_cta = 13105202
) AS saldo
FROM
detcompb det, compbtes comp
WHERE
det.codigo_ana = $cod
AND det.codigo_cta = 13105202
AND comp.numero_com=det.numero_com
GROUP BY
comprobante
ORDER BY
fecha",$link);

********************************

Y me da el siguiente Error

#1104 - The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET

SQL_MAX_JOIN_SIZE=# if the SELECT is okay

como puedo solucionarlo?

Options: ReplyQuote


Subject
Views
Written By
Posted
error 1104
5930
September 25, 2007 12:42AM
2575
September 26, 2007 12:17AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.