एक संग्रहित प्रक्रिया लिखें जैसे:
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
आपको सिंटैक्स की जांच करनी होगी क्योंकि मैं अभी अपने कोड का परीक्षण नहीं कर सकता।