I want to execute procedure
- CREATE PROCEDURE Usp_insertgender
- (
- @gendervalues VARCHAR(MAX)) AS
- BEGIN INSERT INTO sparsha.dbo.Genders ([GenderName]
- )
- VALUES @gendervalues;
- END
execute Usp_insertgender (1),(2)
but am getting error plz help me
I want to execute procedure
- CREATE PROCEDURE Usp_insertgender
- (
- @gendervalues VARCHAR(MAX)) AS
- BEGIN INSERT INTO sparsha.dbo.Genders ([GenderName]
- )
- VALUES @gendervalues;
- END
execute Usp_insertgender (1),(2)
but am getting error plz help me
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Laxmidhar SahooPosted Dec 15, 2017, 3:57 AM
Ravi Kiran ChanduriPosted Dec 12, 2017, 11:33 AM
Rafnas T PPosted Dec 4, 2017, 12:18 AM
Nilesh ShahPosted Dec 3, 2017, 6:56 PM