USP_WPBIOGRAPHICALHHMEMBER_DELETEBYPARENTID

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create procedure dbo.USP_WPBIOGRAPHICALHHMEMBER_DELETEBYPARENTID (
                @ID uniqueidentifier
)
as begin
  delete dbo.WPBIOGRAPHICALHHMEMBER where WPBIOGRAPHICALDEMOGRAPHICID = @ID;
end