How do I sort query results by keyword in a column? (SQL Server Full Text)

How do I sort query results by keyword in a column? I am using SQL Server 2008 with full text indexing.

0


source to share


2 answers


select the column name, count (column name) as cnt from the group of tab names by column order by count (column name) desc



+1


source


select * from table name by column name



Is this what you are looking for?

0


source







All Articles