How to delete Address as an xml datatype value in a table using a procedure?

Merryj
Posted by Merryj under Sql Server category on | Points: 40 | Views : 2338
Create procedure [dbo].[Deleted]
@id int
as
begin
delete from tblPerson where Person_Id=@id
end

Comments or Responses

Posted by: T.saravanan on: 4/28/2011 Level:Silver | Status: [Member] [MVP] | Points: 10
Hi,

Kindly use the code block for post a code.
I think your heading and code is mismatched.

Login to post response