I have a full text query that ends with:
ORDER BY RELEVANCE DESC, CLICK_RATE DESC
Can I give weight to the columns in the order by
? Maybe 0.3
to relevance and 0.7
to click_rate
?
As things are right now, even if I switch them around, the results are not satisfactory.
As an alternative how can have the top 3
results sorted by CLICK RATE
and the rest sorted by relevance
.