Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/02/2010, 14:26
tatis003
 
Fecha de Ingreso: febrero-2010
Mensajes: 31
Antigüedad: 14 años, 8 meses
Puntos: 0
Consultas SELECT

Estas son las consultas que hiice y Kiiero uniirlas es un solo "select"...

Código SQL:
Ver original
  1. SELECT Llenos.gran AS ID,Granja.nom_gran AS NOMBRE,Llenos.num_plan AS PLANILLA, Lote.id_lot AS LOTE,Llenos.cil_ent AS 'TOTAL CILINDROS',
  2. (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'
  3. FROM Llenos,Planilla,Granja,Lote
  4. WHERE id_plan=num_plan AND id_gran=gran;
  5.  
  6.  
  7. SELECT Entrega.gran AS ID,Granja.nom_gran AS NOMBRE,Entrega.num_plan AS PLANILLA, Lote.id_lot AS LOTE,Entrega.cil_ent AS 'TOTAL CILINDROS',
  8. (SELECT SUM(pes_cil)FROM Entrega) AS 'PESO B.RETIRO',(SELECT SUM(pes_cil)FROM Entrega) AS 'PESO NO COSUMIDO',Planilla.num_com_plan AS 'O.COMPRA'
  9. FROM Entrega,Planilla,Granja,Lote
  10. WHERE id_plan=num_plan AND id_gran=gran;
  11.  
  12. SELECT Vacios.gran AS ID,Granja.nom_gran AS NOMBRE,Vacios.num_plan AS PLANILLA, Lote.id_lot AS LOTE,Vacios.cil_vac AS 'TOTAL CILINDROS',
  13. (SELECT SUM(pes_cil)FROM Vacios) AS 'PESO B.RETIRO',(SELECT SUM(pes_cil)FROM Vacios) AS 'PESO NO COSUMIDO',Planilla.num_com_plan AS 'O.COMPRA'
  14. FROM Vacios,Planilla,Granja,Lote
  15. WHERE id_plan=num_plan AND id_gran=gran;

Última edición por tatis003; 19/02/2010 a las 15:06