Top "Sql-like" questions

The LIKE predicate is used to search for a specific pattern in a column.

MySQL: NOT LIKE

I have these text in my db, categories_posts categories_news posts_add news_add And I don't want to …

mysql sql-like
List of special characters for SQL LIKE clause

What is the complete list of all special characters for a SQL (I'm interested in SQL Server but other's would …

sql special-characters sql-like
SQL- Ignore case while searching for a string

I have the following data in a Table PriceOrderShipped PriceOrderShippedInbound PriceOrderShippedOutbound In SQL I need to write a query which …

sql sql-server case-insensitive sql-like ignore-case
LIKE operator in LINQ

Is there any way to compare strings in a C# LINQ expression similar to SQL's LIKE operator? Suppose I have …

c# linq sql-like
SQL query for a carriage return in a string and ultimately removing carriage return

SQL query for a carriage return in a string and ultimately removing carriage return I have some data in a …

sql char carriage-return sql-like
Search for string within text column in MySQL

I have mysql table that has a column that stores xml as a string. I need to find all tuples …

mysql search sql-like
SQL Not Like Statement not working

I have the following code within a stored procedure. WHERE WPP.ACCEPTED = 1 AND WPI.EMAIL LIKE '%@MATH.UCLA.EDU%…

sql where sql-like
Escape a string in SQL Server so that it is safe to use in LIKE expression

How do I escape a string in SQL Server's stored procedure so that it is safe to use in LIKE …

sql-server tsql stored-procedures sql-like
MySQL SELECT LIKE or REGEXP to match multiple words in one record

The field table.name contains 'Stylus Photo 2100' and with the following query SELECT `name` FROM `table` WHERE `name` LIKE …

mysql regex select sql-like
How can I escape square brackets in a LIKE clause?

I am trying to filter items with a stored procedure using like. The column is a varchar(15). The items I …

sql-server tsql escaping character sql-like