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 |
ranganath
Posting Yak Master
209 Posts |
Posted - 2008-07-10 : 03:01:59
|
hi alli devloped one application for the search using fulltext serverfor the fulltext query if suppose i search for "Auto"it will give me the following results1. Auto2. Autos3. Automobile4. Autoclub5. RealAuto |
|
RickD
Slow But Sure Yak Herding Master
3608 Posts |
Posted - 2008-07-10 : 04:26:55
|
Did you have a question? |
 |
|
ranganath
Posting Yak Master
209 Posts |
Posted - 2008-07-10 : 05:02:31
|
HiDeclare @Table Table (Val varchar(1000))Insert into @TableSelect 'Fax' Union AllSelect 'Number' Union AllSelect 'Test' Union AllSelect 'axn' Union AllSelect 'num' if we enter 'FaxNumberTest' as input string then the results should come if the Val like 'Fax', 'Number', 'Test', 'Axn', 'ber', 'rte' and so on. how can i get this. |
 |
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2008-07-10 : 23:25:01
|
Take look at contains or FREETEXT full-text predicates in books online. |
 |
|
|
|
|