I have 2 tables nsk_UserInfo and Photos. I use full text search query to show result
SELECT nsk_UserInfo.User_ID
, nsk_UserInfo.Name
, nsk_UserInfo.Contact_Person
, nsk_UserInfo.Address, Photos.Photo1 as 'Photo'
FROM nsk_UserInfo INNER JOIN Photos ON nsk_UserInfo.User_ID = Photos.User_ID
WHERE FREETEXT ((nsk_UserInfo.*), 'My search term')
this query shows result but not give preference to record(row). what I can do? is it query correct or is there any changes in it? Please help me. It urgent.
Thank You Naresh