Ver Mensaje Individual
  #9 (permalink)  
Antiguo 03/06/2009, 15:42
Avatar de Osay
Osay
 
Fecha de Ingreso: febrero-2005
Mensajes: 10
Antigüedad: 19 años, 9 meses
Puntos: 0
Respuesta: Problemas para desarrollar una funcion

esta es mi tabla tipocomponente

CREATE TABLE "public"."tipocomponente" (
"ComponenteCod" CHAR(12) DEFAULT ''::bpchar NOT NULL,
"ComponenteDscrip" VARCHAR(50) DEFAULT ''::character varying NOT NULL,
"Maximo_horas_uso" BIGINT,
"Precio" NUMERIC,
"FabricanteCod" CHAR(10) DEFAULT ''::bpchar NOT NULL,
CONSTRAINT "tipocomponente_pkey" PRIMARY KEY("ComponenteCod"),
CONSTRAINT "tipocomponente_fk" FOREIGN KEY ("FabricanteCod")
REFERENCES "public"."fabricante"("FabricanteCod")
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) WITHOUT OIDS;