in the following stored procedure, how would I append the @notes param to the end of the column named notes with the datatype of text.
CREATE PROCEDURE PMC_Bro_UpdateBlast
@Fax int,
@Email int,
@CustId varchar(10),
@notes varchar(100)
AS
Update tbl_cust SET fax = @fax, email = @email WHERE idnum = @CustId
GO
CREATE PROCEDURE PMC_Bro_UpdateBlast
@Fax int,
@Email int,
@CustId varchar(10),
@notes varchar(100)
AS
Update tbl_cust SET fax = @fax, email = @email WHERE idnum = @CustId
GO