Top "Sql-like" questions

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

How to query MongoDB with "like"?

I want to query something with SQL's like query: SELECT * FROM users WHERE name LIKE '%m%' How to …

sql mongodb mongodb-query sql-like
LIKE vs CONTAINS on SQL Server

Which one of the following queries is faster (LIKE vs CONTAINS)? SELECT * FROM table WHERE Column LIKE '%test%'; …

sql-server performance contains sql-like
Combining "LIKE" and "IN" for SQL Server

Is it possible to combine LIKE and IN in a SQL Server-Query? So, that this query SELECT * FROM table WHERE …

sql sql-like
How to do SQL Like % in Linq?

I have a procedure in SQL that I am trying to turn into Linq: SELECT O.Id, O.Name as …

.net linq tsql linq-to-entities sql-like
SQL 'LIKE' query using '%' where the search criteria contains '%'

I have an SQL query as below. Select * from table where name like '%' + search_criteria + '%' If …

sql sql-server sql-like
How can I search (case-insensitive) in a column using LIKE wildcard?

I looked around some and didn't find what I was after so here goes. SELECT * FROM trees WHERE trees.`title` …

mysql sql sql-like case-insensitive
Equals(=) vs. LIKE

When using SQL, are there any benefits of using = in a WHERE clause instead of LIKE? Without any special operators, …

sql performance equals sql-like
MySQL Like multiple values

I have this MySQL query. I have database fields with this contents sports,shopping,pool,pc,games shopping,pool,pc,…

mysql sql sql-like
Case insensitive searching in Oracle

The default behaviour of LIKE and the other comparison operators, = etc is case-sensitive. Is it possible make them case-insensitive?

sql oracle case-sensitive case-insensitive sql-like
SQL Server datetime LIKE select?

in MySQL select * from record where register_date like '2009-10-10%' What is the syntax in SQL Server?

sql-server sql-like