Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
ALTER PROCEDURE ruff_stor @cid int, @fname varchar(10), @lname varchar(10), @city varchar(10), @pin varchar(10), @type varchar(10) AS begin set nocount on if @type = 'Insert' begin insert into ruff(fname,lname,city,pin) values (@fname,@lname,@city,@pin) end else if @type = 'Update' begin update ruff set fname=@fname,lname=@lname,city=@city,pin=@pin where cid=@cid end else if @type = 'Delete' begin …
The End.
dar5han