I have one stored procedure MySproc with following two queries
INSERT INTO STG
SELECT ID,AMT,DATE FROM CUSTOMER
UPDATE STG SET AMT = null
I dont want to run the update everytime I run MySproc. What is the best way to control what I want to run within MySproc?