Hi
i wrote a store Procedure, it is simple but it does not work correctly.
This is my SP:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER PROCEDURE [dbo].[Searching_SP]
@item nvarchar(500)
AS
Begin
select * from [File]
where
freetext (FileName,@item)
end
anf forexample this my Table:
FileCode FileName File Url Desc Tag
2 Norton anti b bb Null
3 anti zibra gg ggg Null
Forexample when i put @item=anti
it dont have Record 3 in my result,
this sp only brings Record 2 for me,
what is my mistake?
thanks