I want to insert the result of this query to an existing table (append row)...please any help thanks..SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER PROCEDURE [dbo].[BOA_Normalize]@param1 nvarchar(max)as DECLARE @param2 as nvarchar(max)--SET @param1 = 'MERISOL HADEN RD HOUSTON, TX (OUTSIDE SCALE)'SET @param2 = @param1SET @param1 =(SELECT [dbo].[BOA_CleanString](@param1))SELECT TOP(1) hits, @param2 as myRaw, rawloc, normlocFROM(SELECT [dbo].[BOA_Compare](@param1, val1) as hits, rawLoc, normlocFROM(SELECT [dbo].[BOA_CleanString]([rawLoc]) AS val1, rawloc, normloc FROM dbo. BOA__normall3)t)rOrder By hits descReturn @@ROWCOUNT