Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
ramon6969
Starting Member
11 Posts |
Posted - 2010-01-12 : 08:27:38
|
| i searched the net about sql server full text indexing and ranking and got this sample sql statement and it works using 1 table only:SELECT myTable1.id, myTable1.Title, fulltextSearch.RankFROM myTable1JOINFreeTextTable(myTable1, [myField1], 'awesome ranking') fulltextSearchONmyTable1.id = fulltextSearch.[KEY]ORDER BY Rank DESCwhat i do not know is how to make it to work when it is joined to another table. how do i do that if i have these sample tables?myTable1----------id myField11 rrrrrrr2 qqqqqqq3 kkkkkkk....myTable2-------id myTable1Foreign1 43 62 1...thanks for any inputs |
|
|
|
|
|