Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i want to know about full text search ..how to use it in a windows form..give me an example
Posted

1 solution

The full-text search feature of Microsoft SQL Server delivers enterprise search functionality integrated into the database. Significant enhancements in the areas of performance, manageability, and functionality deliver best-of-breed search capabilities for applications of any size.

SQL
SELECT Column_Name
FROM Table_Name
WHERE FREETEXT (Column_Name, 'Search_Text' );
GO
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900