10/11/2011, 12:01
|
| Colaborador | | Fecha de Ingreso: agosto-2006 Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 18 años, 3 meses Puntos: 774 | |
Respuesta: Insertar o actualizar registro de una tabla en otra sin duplicar los exis Pues sencillo:
nada mas es hacer esto
supongamos que tabla1 es la principal y tabla2 la temporal: insert into tabla1
select * from tabla2
left join tabla1 on (tabla1.id=tabla2.id)
where tabla1.id is null
y para actualizar: update tabla1
set tabla1.value=t1.value
from
(
select * from tabla2
left join tabla1 on (tabla1.id=tabla2.id)
where tabla1.id is not null
) t1 where t1.id=tabla1.id
Saludos!!
__________________ What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me |