11/11/2012, 15:40
|
| | | Fecha de Ingreso: agosto-2008 Ubicación: En internet
Mensajes: 2.511
Antigüedad: 16 años, 4 meses Puntos: 188 | |
Respuesta: Consulta SQL en java Tampoco es tan dificil pensar un poco
SELECT (t.cantidadMayor - t.cantidadMenor) as cantidadFinal from ((SELECT a.Cantidad as cantidadMayor FROM Ingrediente a, Receta b WHERE b.CodigoIngrediente =a.CodigoIngrediente AND b.CodigoProducto=100) UNION (SELECT b.Cantidad as cantidadMenor FROM Ingrediente a, Receta b WHERE b.CodigoIngrediente =a.CodigoIngrediente
AND b.CodigoProducto=100)) t;
__________________ if (fuzzy && smooth) {
fuzzylog = "c00l";
return true;
} |