Hi everybody, I am having a problem with figuring out how to best implement a keyword search in a database of books(I have to create a web interface for the search). I dont know how to create the search query, to get the most relevant results. For example if I would use WHERE CONTAINS and then (*, word1 NEAR word2 NEAR ...) I will get pretty good results, but I will get only results which include all the words included in the query. I would need that it would return also partial results. When I use the WHERE FREETEXT ("search phrase"), I get all the results, but many of them are not as relevant. How should I solve this problem? I have been trying to solve this and not luck so far. I have the fulltext search allowed on the database and programing in asp.net. thanks a lot for your help