Viewing 2 posts - 1 through 2 (of 2 total)
Hi Ilan,
I think the code below can help you. Please note that the input you give must end with a space.
DECLARE
@SearchField VARCHAR(100),
@temp VARCHAR(10),
@Output...
April 29, 2003 at 6:34 pm
#455748
Hi,
The following code may solve your problem :
CREATE PROCEDURE SearchProduct
( @Desc VARCHAR(50) )
AS
BEGIN
SELECT @Desc = Replace(@Desc, '''', '''''')
SELECT...
April 29, 2003 at 5:41 pm
#455742