vote up 0 vote down star
1

How do I sort the query results by keyword occurrence in column? I'm using SQL Server 2008 with Full-text indexing.

flag

2 Answers

vote up 1 vote down

select columnname, count(columnname) as cnt from tablename group by columnname order by count(columnname) desc

link|flag
vote up 0 vote down

select * from tablename order by columnname

Is that what you're looking for?

link|flag
No, I meant the keyword occurrence, for example, if this keyword is "car", record A contains 3 occurrence and record B has 5, then record B should rank higher. – silent200 Jan 7 at 10:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.