About 80,700 results
Open links in new tab
  1. SQL SELECT WHERE field contains words - Stack Overflow

    Jan 12, 2013 · Note that if you use LIKE to determine if a string is a substring of another string, you must escape the pattern matching characters in your search string. If your SQL dialect supports …

  2. SQL | String functions - GeeksforGeeks

    Dec 1, 2025 · SQL string functions help manipulate and format text data efficiently. They are widely used for cleaning, comparing, and extracting meaningful information from textual fields.

  3. SQL Server Functions - W3Schools

    SQL Server has many built-in functions. This reference contains string, numeric, date, conversion, and some advanced functions in SQL Server. Returns the string from the first argument after the …

  4. String Functions (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · All built-in string functions except FORMAT are deterministic. This means they return the same value any time they are called with a specific set of input values.

  5. SQL Where Contains String – Substring Query Example

    Mar 23, 2023 · If you’re working with a database, whether large or small, there might be occasions when you need to search for some entries containing strings. In this article, I’ll show you how to locate …

  6. SQL String Functions: A Complete Overview - LearnSQL.com

    May 9, 2024 · This article presents SQL string functions you can use to manipulate textual or string values. Follow examples and get recommendations for further reading.

  7. How to Select Rows in SQL Where a Column Contains Specific Words

    Mar 26, 2025 · In this tutorial, we’ll look at querying rows that contain given words or phrases in SQL. We tested our examples on MS SQL Server 2022, PostgreSQL 14, and MySQL 8 databases.

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

    Sep 12, 2025 · Searching for a string in database tables has been discussed over the years. There are several approaches to the problem (see References at the end of the article). See how to use SQL to …

  9. SQL string matching

    String matching in SQL provides powerful tools for searching and filtering data based on textual patterns, making it a crucial aspect of database querying and analysis. The specific techniques and …

  10. How To Use the SQL Select Where For String Matching - Squash

    Sep 4, 2023 · Learn how to efficiently search for words within strings using the SQL SELECT WHERE clause.