Ver Mensaje Individual
  #12  
Antiguo 03-08-2005
Avatar de Crandel
[Crandel] Crandel is offline
Miembro Premium
 
Registrado: may 2003
Ubicación: Parana, Argentina
Posts: 1.475
Reputación: 23
Crandel Va por buen camino
Hola kanvictor, no estoy muy seguro de que puedas pasar el parámetro de descripción de esa forma en el select.

yo lo separaría en dos SQL

Código SQL [-]
INSERT INTO TABLAS (
  FECHA_DESDE,
  FECHA_HASTA,
  UTILIZA_LLAMADA_ENTRANTE)

Select
  FECHA_DESDE,
  FECHA_HASTA,
  UTILIZA_LLAMADA_ENTRANTE
from tablas

where
  ID_TABLA = :ID_TABLA_A_COPIAR;

Luego

Código SQL [-]
UPDATE TABLAS 
  SET DESCRIPCION = DESCRIPCION
WHERE
  ID_TABLA = :ID_TABLA_A_COPIAR;
__________________
[Crandel]
Responder Con Cita