Tagged Questions
The like-operator tag has no wiki summary.
19
votes
4answers
7k views
How to query mongodb with “like”?
I'm using mongodb 1.4.
I want query something as SQL's like.
For an example in SQL:
select * from users where name like '%m%'
How to do the same in mongodb? I can't find a operator for like in ...
10
votes
4answers
363 views
LIKE with integers, in SQL
Can I replace the = statement with the LIKE one for the integers ?
by eg. are the following the same thing:
select * from FOOS where FOOID like 2
// and
select * from FOOS where FOOID = 2
...
7
votes
5answers
352 views
SQL - searching database with the LIKE operator
Given your data stored somewhere in a database:
Hello my name is Tom I like dinosaurs to talk about SQL.
SQL is amazing. I really like SQL.
We want to implement a site search, allowing visitors ...
6
votes
4answers
143 views
How to do a LIKE considering two columns?
I have a customer table with two columns first_name and last_name.
How can I use LIKE in a query being able to get data from both columns at same tame?
For instance:
SELECT CONCAT(first_name, ' ', ...
6
votes
3answers
97 views
Linq2SQL to produce Like operator
I have a string "Word1 Word2" and I want to transform it to a query such as "Like '%Word1%Word2%'".
At the moment I have:
from t in Test
where t.Field.Contains("Word1 Word2")
How to do this in ...
5
votes
3answers
48 views
On SQL Server (2008), if I want to filter a string field that starts with something, what is the best way?
On several SQL queries I need to check if a field starts with a character.
There are several ways to do it, which one is better in performance/standard?
I usually use
tb.field LIKE 'C%'
but I can ...
5
votes
2answers
2k views
MySQL: Which is faster — INSTR or LIKE?
If your goal is to test if a string exists in a MySQL column (of type 'varchar', 'text', 'blob', etc) which of the following is faster / more efficient / better to use, and why?
Or, is there some ...
5
votes
5answers
3k views
Oracle query using 'like' on indexed number column, poor performance
On Query 1 a full table scan is being performed even though the id is an indexed column. Query 2 achieves the same result but much faster. If Query 1 is run returning an indexed column then it returns ...
5
votes
3answers
1k views
What is a suitable replacement for the SQL Like operator to increase performance?
I'm working on an application that runs on Windows Mobile 6 that needs to be able to retrieve all items from an item table that contain a given string (provided by the end user) within the item's ...
4
votes
4answers
66 views
How to use LIKE and IN operators in one query?
My simple sql statement is this:
SELECT USERNAME FROM ALL_USERS;
But I want to filter system users from the result. I searched but couldn't find anything that Oracle provided; so I tried a ...
4
votes
1answer
70 views
MySQL - Why are COLLATION rules ignored by LIKE operator for German ß character
I'm running the following select statements on MySQL 5.0.88 with utf8 charset and utf8_unicode_ci collation:
SELECT * FROM table WHERE surname = 'abcß';
+----+-------------------+------+
| id | ...
4
votes
2answers
74 views
LIKE in SQLite (and even MysQL)
Will the LIKE keyword use the index in SQLite and/or MySQL?
I would understand that a wildcard match might not use the index, but how about a starts with comparison?
4
votes
2answers
83 views
Query returns different results
I have 2 queries( i belive they must return same amount of rows:) ) :
1.
SELECT NAME
FROM myDataBase.myTable
WHERE CONTAINS(NAME, 'ABC')
2.
SELECT NAME
FROM myDataBase.myTable
WHERE NAME LIKE ...
4
votes
3answers
322 views
difference between like and regex operator
I'm learning MySQL now. I need your help in understanding the difference between these queries:
select id from tab where id like '000';
select id from tab where id regex '000';
4
votes
3answers
392 views
Like condition in LINQ
I am relatively new to LINQ and don't know how to do a Like condition. I have an IEnumerable list of myObject and want to do something like myObject.Description like 'Help%'. How can I accomplish ...
4
votes
3answers
365 views
LIKE work-around in SQL (Performance issues)
I've been reading around and found that using LIKE causes a big slowdown in queries.
A workmate recommended we use
Select Name
From mytable
a.Name IN (SELECT Name
FROM mytable
...
4
votes
5answers
1k views
How to query lucene with “like” operator?
The wildcard * can only be used at the end of a word, like user*.
I want to query with a like %user%, how to do that?
4
votes
5answers
7k views
SQL Server datetime LIKE select?
in MySQL
select * from record where register_date like '2009-10-10%'
What is the syntax in SQL Server?
Thank you.
3
votes
3answers
68 views
GROUP a result BY a specific keyword in MySQL?
I have a page tagged with multiple tags with the keyword I am searching and sometimes it is not tagged with that keyword, so when it has that tags, it will return a result like this below,
query,
...
3
votes
2answers
55 views
Which is better? Locate or like % in the where clause of a Mysql query [closed]
Possible Duplicate:
MySQL LIKE vs LOCATE
I need to write a Mysql query which chooses rows based on a string in a column. Say the column is named TestColumn. I need to choose all rows which ...
3
votes
2answers
470 views
Microsoft office Access `LIKE` VS `RegEx`
I have been having trouble with the Access key term LIKE and it's use. I want to use the following RegEx (Regular Expression) in query form as a sort of "verfication rule" where the LIKE operator ...
3
votes
4answers
4k views
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 a string list. On this list I want to search a string. In SQL, I could write:
SELECT * FROM ...
3
votes
3answers
140 views
Make MySQL ignore “The” from the start of a LIKE condition?
I have a list of company names, and want to display all the names beginning with a certain character. d for example.
So the query is
SELECT * FROM company WHERE name LIKE 'd%'
But I also want the ...
3
votes
1answer
459 views
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 on number of results.
And I'm not faced with a challenge whether to filter ...
3
votes
5answers
541 views
SQL Search Statement like Google?
Is there some kind of SQL Statement that I can used to do a search on 1 Column in my table that is similar to what I am looking for.
Like if I am looking for something to do with a "Car" but I spell ...
3
votes
2answers
97 views
T-SQL Operators LIKE need help
i would like to search in DB
input string is "oxoşil"
o -> [o-ö]
x -> [x-ks]
ş -> [s-ş]
ş -> [ş-sh]
i need to search all of these cominations.
Needed finally search criteria is ...
3
votes
1answer
83 views
What is the best way of searching mysql table field for the ending of a fiels?
I have been told that searching in a MySQL database with LIKE '%wordend' is bad because it takes very long time.
What is the best way of searching on the end of a field?
Should I make an extra field ...
3
votes
1answer
375 views
Are there any advantages to using the VB.NET Like Operator vs a RegEx?
Other than perhaps enhanced readability for very simple patterns, why would someone choose to use the Like operator in VB.NET over regular expressions for string pattern matching? Are there any ...
3
votes
2answers
3k views
Performance of Like '%Query%' Vs Full Text Search CONTAINS Query
I have a situation where I would like to search single word.
For that scenario, which Query would be good from performance point of view?
Select Col1, Col2 from Table Where Col1 Like '%Search%'
...
3
votes
2answers
10k views
Hibernate HQL query by using like operator
Seu the following mapping
@Entity
public class User {
private Integer id;
@Id;
private Integer getId() {
return this.id;
}
}
Notice id is an Integer. Now i need this HQL ...
2
votes
1answer
60 views
SQLite: Should LIKE 'searchstr%' use an index?
I have a DB with several fields
word_id — INTEGER PRIMARY_KEY
word — TEXT
...
..and ~150k rows.
Since this is a dictionary, I'm searching for a word with mask 'search_string%' using LIKE.
It used ...
2
votes
4answers
120 views
t-sql “LIKE” and Pattern Matching
I've found a small annoyance that I was wondering how to get around...
In a simplified example, say I need to return "TEST B-19" and "TEST B-20"
I have a where clause that looks like:
where [Name] ...
2
votes
5answers
104 views
Like query not working when using [ or ] in like
Need to ask about strange behaviour of SQL Server 2005.
What I need is to find records that contain ']' or '[' in my column
I have a data in column like this
...
2
votes
1answer
362 views
sql like query slow if using declare parameter but fast if not
SQL 2008:
This is slow (takes 1 1/2 minutes):
declare @p1 varchar(50)
set @p1 = '976j%'
select * from invsearch_query where comparepnfwd like @p1
This takes less than a second:
select * from ...
2
votes
1answer
765 views
xQuery LIKE-operator (starts-with)
Value in the field is as follows
<en-US>Parameter23</en-US>
<it-IT>Parameter</it-IT>
SQL query is
select *
from parametermaster
where cast(ParameterName as ...
2
votes
1answer
499 views
Is it possible to perform a “LIKE” statement in a SSIS Expression?
I'm using a Derived Column Task to change column data using a CASE WHEN statement. However, I need to be able to say..
SQL CODE WOULD BE:
CASE WHEN Column01 LIKE '%i%' THEN '0' ELSE '1' END
In ...
2
votes
1answer
136 views
Why would a mysql SELECT with 'LIKE word%word2' in the where clause not use an index
The query is large and includes a long list of 'LIKE' tests in the WHERE clause, e.g., ...SELECT colA FROM t WHERE (colX LIKE 'word1%word2%' OR colX LIKE 'word3%word4%' OR...);
colX has an index. ...
2
votes
3answers
540 views
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 where name like %username%
If I use fulltext for this query can ı take better ...
2
votes
5answers
135 views
SQL query help!! I'm trying to select the row that DOESN'T start with a number
I have 10,001 rows in my table, and all of the rows except one start with a number. I need to find this one row that doesn't start with a number, or even that doesn't contain a number.
So this is ...
2
votes
1answer
96 views
how to use select result with like in mysql
I need some mysql code that uses a select output in LIKE statement in WHERE.
I mean something like this:
SELECT id FROM (SELECT id,parent_id FROM units WHERE ptitle
like '%(SELECT ptitle FROM ...
2
votes
3answers
57 views
How do you order by a search phrase found in the beginning of a word and only afterwards the middle using SQL
Let's say I have table [users] with the field [Name] and I've written a query in my application to search by name.
The names in the database are:
Lala
Ally
My SQL query is:
SELECT * FROM users ...
2
votes
1answer
102 views
Complicated Sub-query - is this possible?
I've got 2 tables: one stores tags, the other stores articles. There's a mode "Get articles by tag", which basically takes all articles, tagged "x". In my articles table I use a filed, called Tags, ...
2
votes
3answers
267 views
SQL Server like statement behavior for %%
In terms of performance, how does the like operator behaves when applied to strings with multiple % placeholders?
for example:
select A from table_A where A like 'A%'
takes the same time to ...
2
votes
2answers
305 views
Implementing a “like” operator multiple times in one Linq to Entities query
We have a list of strings and we need to filter our results by that list. Example would be find all students who have SSNs that start with 465, 496, or 497 (plus x more)
List<string> list = ...
2
votes
1answer
389 views
SWITCH with LIKE inside SELECT query in MySQL-Resolved
I have this Tags table
CREATE TABLE IF NOT EXISTS `Tags` (
`id_tag` int(10) unsigned NOT NULL auto_increment,
`tag` varchar(255) default NULL,
PRIMARY KEY (`id_tag`),
UNIQUE KEY `tag` ...
2
votes
8answers
355 views
Create SQL 'LIKE' Statment that looks for specific Patterns of numbers and letters
Is it possible to use LIKE in a SQL query to look for patterns of numbers and letters. I need to locate all records where the specific field data has the pattern (2 Numbers,1 hyphen, 3 Letters) ## - ...
2
votes
2answers
1k views
Using LIKE operator in LINQ to Entity
Currently in our project we are using Entity Framework and LINQ. We want to create a search feature where the Client fills different filters but he isn't forced to.
To do this "dynamic" query in ...
2
votes
2answers
90 views
SQL Like question
Is there a way to reverse the SQL Like operator so it searches a field backwards? For example, I have a value in a field that looks like this "Xbox 360 Video Game". If I write a query like below, it ...
2
votes
3answers
783 views
filter mySQL database with multiple words in any order in Concatenated field
I have Concatenated in mySQL to produce a field that I can search with. This contains animal as well as owner names and addresses for a client database. I need to be able to search by animal name, ...
2
votes
3answers
1k views
Query SQL with like operator from two tables
How can I do a SQL query with the like operator from two different tables?
I need something like:
select * from table1 where name like %table2.name
It's not a common field but a substring of a ...