About 453,000 results
Open links in new tab
  1. SQL Server CHARINDEX () Function - W3Schools

    The CHARINDEX () function searches for a substring in a string, and returns the position. If the substring is not found, this function returns 0. Note: This function performs a case-insensitive search. …

  2. SUBSTRING, PATINDEX and CHARINDEX string functions in SQL

    In this article, we explored the SUBSTRING, PATINDEX, and CHARINDEX string functions for SQL queries. You can retrieve a specific text, data using a combination of these functions.

  3. CHARINDEX (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · This function searches for one character expression inside a second character expression, returning the starting position of the first expression if found. Transact-SQL syntax …

  4. In SQL - FIND Function - Stack Overflow

    Nov 4, 2021 · As it's currently written, it's hard to tell exactly what you're asking. If you want to find a word in a table in SQL you need to use "like" statement. You can see this documentation about, how …

  5. How to Find a String within a String in SQL Server - Database.Guide

    May 4, 2018 · This function accepts 3 arguments; the string to find, the string to search, and an optional start position. The CHARINDEX() syntax goes like this: Where expressionToFind is the expression …

  6. Use SQL to Find a String in Database Tables, Stored Procedures, and ...

    Sep 12, 2025 · Learn how to build and use a simple app to search for a string in SQL Server tables, stored procedures, and user defined functions.

  7. SQL SELECT WHERE Field Contains Words - GeeksforGeeks

    Jul 23, 2025 · In SQL, the SELECT WHERE clause is a fundamental tool for filtering data based on specific conditions. When working with text fields, the SELECT WHERE clause helps identify records …

  8. How to Search for Database Objects, Table Data, and Value in SQL Server

    Aug 20, 2022 · Fortunately, SQL Server provides various methods for searching for objects and text within the database. The sys.objects view provides information about all objects in a database, …

  9. STRING and FIND SQL FunctionsSQLServerCentral

    Jul 6, 2018 · SQL Functions that simplify search and operations over strings on SQL Server (starting with 2012)

  10. SQL Server: Searching for a String (Text) in All Tables

    Nov 30, 2020 · Finding a String (text) in SQL Server can be done using a SQL script, which is useful when working with large or unfamiliar schemas.