About 4,500 results
Open links in new tab
  1. LIKE (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · If the LIKE '5%' symbol is specified, the Database Engine searches for the number 5 followed by any string of zero or more characters. For example, the following query shows all …

  2. SQL LIKE Operator - W3Schools

    The SQL LIKE Operator The LIKE operator is used in a WHERE clause to search for a specified pattern within a column's text data. There are two wildcards often used in conjunction with the LIKE operator: …

  3. SQL Server LIKE Operator

    This tutorial shows you how to use the SQL Server LIKE operator to check whether a character string matches a specified pattern.

  4. SQL LIKE Statement for String Pattern Matching - SQL Server Tips

    Jan 28, 2021 · When searching a character-based column in a SQL Server table, it's very rare that we know the exact string we are searching for and can perform the query using the = operator. The SQL …

  5. SQL LIKE Operator - GeeksforGeeks

    5 days ago · Wildcards are used with the LIKE operator to search for specific patterns in strings. Wildcard characters substitute one or more characters in the string. There are four wildcard …

  6. SQL Server: LIKE Condition - TechOnTheNet

    This SQL Server tutorial explains how to use the LIKE condition in SQL Server (Transact-SQL) to perform pattern matching with syntax and examples. The SQL Server (Transact-SQL) LIKE condition …

  7. SQL LIKE Pattern Matching: A Practical Guide With Examples

    Apr 10, 2026 · Use LIKE to filter SQL records on specific string matches. This tutorial teaches you to use wildcards, NOT, LOWER, UPPER, and CASE WHEN with LIKE.

  8. SQL 'LIKE' query using '%' where the search criteria contains

    May 18, 2025 · How do you use SQL's LIKE operator when your search term includes the % wildcard itself? What if you're trying to search for a literal % character rather than using it as a wildcard? Learn …

  9. sql server - SQL 'LIKE' query using '%' where the search criteria ...

    May 29, 2012 · Let's say you wanted to search for a % or a _ character in the SQL LIKE condition. You can do this using an Escape character. Please note that you can only define an escape character as …

  10. T-SQL LIKE operator in SQL Server

    The LIKE operator works by using wildcard characters to represent unknown or variable parts of a pattern. There are two wildcard characters that can be used with the LIKE operator in SQL Server: 1. …