Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/03/2011, 19:45
Avatar de Hs_Jeldres
Hs_Jeldres
 
Fecha de Ingreso: marzo-2011
Mensajes: 25
Antigüedad: 13 años, 8 meses
Puntos: 0
Pregunta Problema con procedimiento Almacenado.

Hola, me encuentro haciendo un procedimiento almacenado que compila pero me tira el siguiente error y me gustaria saber que esta mal.

primero el procedure.
Código MySQL:
Ver original
  1. CREATE PROCEDURE `sp_cal_pas`(IN `ato` varchar(50),
  2.  IN `nego` varchar(50), IN `opera` varchar(50), IN `mes_` INT)
  3. SELECT CorrigePostaXTPO.LAm,CorrigePostaXTPO.ORIm,CorrigePostaXTPO.Negocio,
  4. Month(FTRAMO) as Mes, SUM(F), SUM(J), SUM(Y)
  5. FROM PaxEmbarcados LEFT JOIN CorrigePostaXTPO ON
  6. (PaxEmbarcados.NRO = CorrigePostaXTPO.NRO)
  7. AND (PaxEmbarcados.LA = CorrigePostaXTPO.LA)
  8. AND (PaxEmbarcados.DES = CorrigePostaXTPO.DES)
  9. AND (PaxEmbarcados.ORI = CorrigePostaXTPO.ORI)
  10. where CorrigePostaXTPO.LAm=opera
  11. and CorrigePostaXTPO.Negocio=nego
  12. and Month(FTRAMO)=mes_
  13. and CorrigePostaXTPO.ORIm=ato
  14. GROUP BY LAm, CorrigePostaXTPO.Negocio,ORIm,Mes;

el error es.

sql error 1064 dice de sintaxis near line 15 y e cambiado cosas y no me funca,
please soy nuevo en esto ayuda.