devxlogo

Searching for matching strings

Question:
I have a simple query using an SQL statement for returning matching records from an IIS Web server using ASP. I need a new query which returns a match on a search string which occurs anywhere in the searched field. In other words a search for “fox” would match for a field containing “The quick brown fox jumped….” In FoxPro I use the AT() command to do this.If this type of query is possible using SQL commands how is this done, or if not possible what is the simplest alternate solution?

Answer:
There is no AT command in SQL Server, but there is PATINDEX and CHARINDEX.From BOL;

The CHARINDEX and PATINDEX functions return the starting position of a pattern you specify. PATINDEX can use wildcard characters while CHARINDEX cannot.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.