Hi Below is my query which i'm using to full text search.
declare @p_search_keyword varchar(100)='Iphone speakers'
SET @p_search_keyword = '"'+@p_search_keyword+'"'
SELECT mi.m_item_id , item_nm
FROM dbo.tbl_item mi(nolock)
WHERE
CONTAINS( mi.item_nm,'FORMSOF(INFLECTIONAL', +@p_search_keyword+'")' )
I dont know how to use it with FOrm Of its throwing syntax error can anyone help with the syntax
Thanks
Vineet BHargava