Migrar los nombre de los Titulos Presupuestarios(cpdeftit)a partir de otra Tabla
De CidesaWiki
- Migra los Nombre Presupuestario siempre que se cumpla la condicion donde el Codigo llegue al nivel
01
01-01
01-01-01
01-01-01-01
01-01-01-01-01
01-01-01-01-01-401
update cpdeftit set nompre= (select nompre from cpdeftit_2008 where length(trim(cpdeftit.codpre))<=18 and rpad(substr(cpdeftit.codpre,1,18),50,' ')=cpdeftit_2008.codpre) where exists (select nompre from cpdeftit_2008 where length(trim(cpdeftit.codpre))<=18 and rpad(substr(cpdeftit.codpre,1,18),50,' ')=cpdeftit_2008.codpre)
--Jlobaton 15:54 10 ene 2008 (VET)