Top "Sql-like" questions

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

Match only entire words with LIKE?

So 'awesome document' LIKE '%doc%' is true, because doc is a sub-string. But, I want it to be …

sql sqlite sql-like
Like operator in LINQ to Objects

I'm trying to emulate the LIKE operator in LINQ to Objects. Here my code: List<string> list = new …

c# linq-to-objects sql-like
mysql like performance boost

is there anyway to speed up mysql like operator performance if wild card is involved? eg. like '%test%'

mysql sql-like
Return rows where first character is non-alpha

I'm trying to retrieve all columns that start with any non alpha characters in SQlite but can't seem to get …

sql sqlite sql-like alphanumeric
mysql datetime field with index get a range 'like' vs. 'between and' performance

I just find mysql can query datetime using like: like '2013-06-12%' I think it can not use …

mysql datetime sql-like between
How can you find a literal percent sign (%) in PostgreSQL using a LIKE query?

I have character varying entries in a table where some (not all) values contain percentages, e.g., '12%', '97%…

postgresql sql-like
Full text search vs LIKE

My question is about using fulltext.As I know like queries which begin with % never use index : SELECT * from customer …

sql-server full-text-search sql-like fulltext-index
SQL LIKE with no wildcards the same as '='?

I know this is a pretty basic question, and I think I know the answer...but I'd like to confirm. …

sql wildcard sql-like
MySQL LIKE + php sprintf

$test = sprintf("SELECT * FROM `table` WHERE `text` LIKE '%%s%'", mysql_real_escape_string('test')); echo $test; output: SELECT * …

php mysql printf sql-like
T-SQL speed comparison between LEFT() vs. LIKE operator

I'm creating result paging based on first letter of certain nvarchar column and not the usual one, that usually pages …

tsql comparison sql-like