Citar
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT estadistica.id_pre, encuestas.des,preguntas.des,respuestas.des, COUN' at line 4
este es mi codigo de mi procedimiento
Código:
CREATE
PROCEDURE conteovotos
SELECT estadistica.id_pre, encuestas.des,preguntas.des,respuestas.des,
COUNT (estadistica.id_resp)
FROM estadistica , encuestas , preguntas , respuestas
where estadistica.id_enc=encuestas.id and preguntas.id=estadistica.id_pre and estadistica.id_resp=respuestas.id
Group BY estadistica.id_resp
hago la consulta
sin el procedimiento y me va de maravilla.....
alguien q pudiera auxiliarme??
gracias de antemano!