Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/04/2012, 14:35
Avatar de Libras
Libras
Colaborador
 
Fecha de Ingreso: agosto-2006
Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 18 años, 4 meses
Puntos: 774
Respuesta: consulta con select update insert

una sencilla con 2 querys:

tabla1 tabla produccion
tabla2 tabla intermedia o donde estan los datos antes de mandarlos a prod

Código SQL:
Ver original
  1. INSERT INTO tabla1
  2. SELECT * FROM tabla1 AS t1
  3. LEFT JOIN tabla2 AS t2 ON (t1.id=t2.id)
  4. WHERE tabla1.id IS NULL
  5.  
  6. UPDATE tabla1
  7. SET tabla1.dato=test.dato
  8. FROM
  9. (
  10. SELECT * FROM tabla1 AS t1
  11. LEFT JOIN tabla2 AS t2 ON (t1.id=t2.id)
  12. WHERE t1.id IS NOT NULL
  13. ) AS test WHERE tabla1.id=test.id

Saludos!
__________________
What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me