24/03/2008, 06:26
|
| | Fecha de Ingreso: julio-2007
Mensajes: 23
Antigüedad: 17 años, 5 meses Puntos: 0 | |
Re: Insert O Update Dependiente De Si Existe Pues si existe un registro con que hagas un select es suficiente:
if exists(select * from tabla where id = numero) begin
print 'existe registro' -- operacion
end
ahora si haces un update tambien puedes consultar la variable @@ROWCOUNT y verificas cuantas filas actualizó.
salu2 |