Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/05/2011, 13:16
Avatar de gnzsoloyo
gnzsoloyo
Moderador criollo
 
Fecha de Ingreso: noviembre-2007
Ubicación: Actualmente en Buenos Aires (el enemigo ancestral)
Mensajes: 23.324
Antigüedad: 17 años
Puntos: 2658
Respuesta: autoincrement en innoDB, NO UNICA

Cita:
¿¿Alguna idea para avanzar??
Si es a través de los INSERT, te recomiendo un simple TRIGGER parecido a este:
Código MySQL:
Ver original
  1. DROP TRIGGER IF EXISTS set_subitemfactura;
  2. DELIMITER $$
  3. CREATE TRIGGER set_subitemfactura BEFORE INSERT
  4. ON factura
  5.         IF(SELECT MAX(subitem) FROM factura WHERE id_factura=NEW.id_fctura) IS NULL THEN
  6.       SET NEW.subitem = 1;
  7.     ELSE
  8.       SET NEW.subitem = (SELECT MAX(subitem) FROM factura WHERE id_factura = NEW.id_factura)+1;
  9.     END IF;
  10. END$$
  11.  
  12. DELIMITER ;
__________________
¿A quién le enseñan sus aciertos?, si yo aprendo de mis errores constantemente...
"El problema es la interfase silla-teclado." (Gillermo Luque)