I have simple tbl_posts table with three columns (id, name, content)
I created fulltext index for name and content columns. When I query it like:
SELECT *
FROM dbo.tbl_posts
WHERE FREETEXT ( *, 'search word' )
I want that the order for results will be ordered first by rank in column name and then my content