Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/03/2010, 07:12
tatis003
 
Fecha de Ingreso: febrero-2010
Mensajes: 31
Antigüedad: 14 años, 11 meses
Puntos: 0
Respuesta: Unir consultas !!!!!

Ola!
hice la consulta de la siguiente manera:
Código SQL:
Ver original
  1. SELECT Llenos.gran AS ID,Granja.nom_gran AS NOMBRE,Llenos.num_plan AS PLANILLA,
  2. Lote.id_lot AS LOTE,Llenos.cil_ent AS 'TOTAL CILINDROS',
  3. (SELECT SUM(pes_cil)FROM Llenos) AS 'PESO B.RETIRO',(SELECT SUM(pes_cil)FROM Llenos) AS 'PESO NO COSUMIDO',Planilla.num_com_plan AS 'O.COMPRA'
  4. FROM Llenos,Planilla,Granja,Lote
  5. WHERE id_plan=num_plan AND id_gran=gran
  6. UNION
  7. SELECT Entrega.gran AS ID,Granja.nom_gran AS NOMBRE,Entrega.num_plan AS PLANILLA,
  8. Lote.id_lot AS LOTE,Entrega.cil_ent AS 'TOTAL CILINDROS',
  9. (SELECT SUM(pes_cil)FROM Entrega) AS 'PESO B.RETIRO',(SELECT SUM(pes_cil)FROM Entrega)
  10. AS 'PESO NO COSUMIDO',Planilla.num_com_plan AS 'O.COMPRA' FROM Entrega,Planilla,Granja,Lote
  11. WHERE id_plan=num_plan AND id_gran=gran AND
  12. Planilla.fec_ent_plan={?FECHA}
  13. UNION
  14. SELECT Vacios.gran AS ID,Granja.nom_gran AS NOMBRE,Vacios.num_plan AS PLANILLA,
  15. Lote.id_lot AS LOTE,Vacios.cil_vac AS 'TOTAL CILINDROS',
  16. (SELECT SUM(pes_cil)FROM Vacios) AS 'PESO B.RETIRO',(SELECT SUM(pes_cil)FROM Vacios)
  17. AS 'PESO NO COSUMIDO',Planilla.num_com_plan AS 'O.COMPRA' FROM Vacios,Planilla,Granja,Lote
  18. WHERE id_plan=num_plan AND id_gran=gran

pero al ir a la vista previa del informe me sale el siguiente mensaje, y no muestra ningun dato en el reporte :

"Esta seccion de grupo no se puede imprimir porque su campo de condición no existe o no es valido.Dar formato a la seccion para elegir otro campo de condicion"