Interview Question in Microsoft Transact-SQL
Interview Question :: How to make a general stored procedure in T-SQL for the INSERT,UPDATE and DELETE operations
I have an entity named Country with fields: CountryID, CountryName where CountryID is a primary key. And i like to create a general stored procedure that does INSERT, UPDATE and DELETE operations. How can i do that?

Loading ...