sql >> Base de Datos >  >> RDS >> Sqlserver

Cómo aplicar Actualizar si existe un elemento e Insertar de lo contrario

Escriba un procedimiento almacenado como:

create procedure INSERT_OR_UPDATE as
begin
  if exists ( select * from Numerations where <your condition> )
    begin
      update Numerations set < ... > where < ... >
    end
  else
    begin
      insert into Numerations values <...>
    end
end

Debe verificar la sintaxis porque no puedo probar mi código en este momento.