Top "Sql-like" questions

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

How can I use 'Not Like' operator in MongoDB

I can use the SQL Like Operator using pymongo, db.test.find({'c':{'$regex':'ttt'}}) But how can I …

regex mongodb mongodb-query pymongo sql-like
Hive - LIKE Operator

I can not figure out how I deal with that problem: This is my Data: Table1: Table2: BRAND PRODUCT SOLD …

hadoop hive hiveql sql-like
SQL SELECT WHERE string ends with Column

I have this table in SQL Server 2012: Id INT DomainName NVARCHAR(150) And the table have these DomainName values google.com …

sql sql-server select sql-like
SQL SELECT LIKE (Insensitive casing)

I am trying to execute the sql query: select * from table where column like '%value%'; But the data …

mysql sql sql-like case-insensitive
like and not like in one mysql query

I want to do a query containing 'like' and 'not like'. Current example: i want everything starting with '1|%' …

mysql sql-like
Use of SqlParameter in SQL LIKE clause not working

I have the following code: const string Sql = @"select distinct [name] from tblCustomers left outer join tblCustomerInfo on tblCustomers.Id = …

c# sql-server tsql ado.net sql-like
What is Full Text Search vs LIKE

I just read a post mentioning "full text search" in SQL. I was just wondering what the difference between FTS …

sql full-text-search sql-like
SQL Join on a column LIKE another column

Possible Duplicate: mysql join query using like? I want to do a join where one column contains a string from …

mysql sql join sql-like
Performance of like '%Query%' vs full text search CONTAINS query

I have a situation where I would like to search a single word. For that scenario, which query would be …

sql database performance full-text-search sql-like
PostgreSQL: Select data with a like on timestamp field

I am trying to select data from a table, using a "like" on date field "date_checked" (timestamp). But I …

postgresql timestamp sql-like