Skip to content
Iampsp Blog

Iampsp Blog

I am a programming service provider

My Portfolio
Project order
Reviews
Favorite Exchange

Categories

  • C
  • C#
  • C++
  • CSS
  • Firefox Addons
  • Firefox Themes
  • HTML
  • JAVA
  • JavaScript
  • jQuery
  • Mybb Plugins
  • MySQL
  • PHP
  • Python
  • React
  • SQL

Recent Posts

  • jQuery – The noConflict() Method
  • jQuery – AJAX get() and post() Methods
  • jQuery – AJAX load() Method
  • jQuery – AJAX Introduction
  • jQuery Traversing – Filtering

Tag: sql like operator escape underscore

SQL LIKE Operator

The SQL LIKE Operator

The LIKE operator is used in a
WHERE
clause to search for a specified pattern in a column.

There are two wildcards often used in conjunction with the
LIKE
operator:

  •  The percent sign % represents zero, one, or multiple characters
  •  The underscore sign _ represents one, single character

Example

Select all customers that starts with the letter “a”:

SELECT * FROM Customers
WHERE CustomerName LIKE 'a%';

Continue reading SQL LIKE Operator

Posted on 2025-03-05Categories SQLTags sql, sql coalesce, sql insert, sql joins, sql like operator, sql like operator case sensitive, sql like operator escape underscore, sql like operator for integer, sql like operator for numbers, sql like operator in java, sql like operator not working, sql like operator regex, sql like operator wildcards, sql like operator with multiple values, sql server, sql server management studio, sql union, sql update, sqlalchemy, sqlite
Proudly powered by WordPress