The like-operator tag has no wiki summary.
0
votes
3answers
26 views
SQL Like with a subquery
How can i make this work?
select * from item where item_name like '%' || (select equipment_type from equipment_type group by equipment_type) || '%'
The inner sub query returns a list of strings ...
2
votes
2answers
28 views
LINQ to Entities using the SQL LIKE operator
I have this:
query = query.Where(s => s.ShowTypeDescription == showTypeDescription);
several times for different variables in order to build dynamic SQL.
How would I go about transforming the ...
0
votes
0answers
26 views
JPA hibernate SQL query
Hey i have problem with JPA hibernate SQL query where i serach a elements from one basic attribute and one which is in the basic entity in the List. so i have to compare with array string, beacause i ...
0
votes
1answer
19 views
In PostgreSQL how to combine NOT IN and LIKE?
How do you combine NOT IN and LIKE?
Let's assume we have a DataTable that contains a column of names (something like blue cheese, gouda cheese and so on) and I want to select all the names that ...
0
votes
2answers
47 views
Unable to execute LIKE query in HSQLDB
I need to execute LIKE query. i have created as below:
AData ad : ao.find(AData.class, Query.select().where("user=? AND ISSUES LIKE %?%",user,issueId))) //issues field contain values as ...
0
votes
1answer
23 views
MySQL subquery within LIKE CONCAT
I'm trying to create a query that checks an inserted value against a field. I'm trying to accomplish this using a sub-query, but got stuck. What I'm trying to accomplish:
(message1) User1 says: Hello ...
1
vote
2answers
47 views
SQL-Server is ignoring my COLLATION when I'm using LIKE operator
I'm working with Spanish database so when I'm looking for and "aeiou" I can also get "áéíóú" or "AEIOU" or "ÁÉÍÓÚ", in a where clause like this:
SELECT * FROM myTable WHERE stringData like '%perez%'
...
0
votes
1answer
53 views
Spring JPA @Query where clause with 'like' and 'or'
I have the following query:
@Query("select c from Category c where ( (lower(c.name) like '%' || lower(:searchText) || '%') or (lower(c.description) like '%' || lower(:searchText)) || '%')")
My ...
0
votes
1answer
27 views
How to use column name as part of a LIKE statement in a WHERE clause of a JOIN
LEFT OUTER JOIN [INVENTTRANS]
ON #TEMP.VOUCHERPHYSICAL=[INVENTTRANS].VOUCHERPHYSICAL
WHERE [INVENTTRANS].ITEMID = #Temp.INVENTDIMID
This provides me nearly the result I am looking for. About 1/4th ...
0
votes
1answer
38 views
When Statments with LIKE and Substrings
I am in school and trying to figure out this question asked by the instructor. I have not asked the instructor because he usually gets back to me 2 weeks down the road.
Here is what the questions is ...
0
votes
2answers
44 views
SQL field contains a string (comma delimited or at start/end)
I have a field ERR_CODES on my db that contains some error codes for the current record.
For example, it can contain:
...
1
vote
1answer
242 views
Using LIKE operator with stored procedure parameters
I have a stored procedure that uses the LIKE operator to search for a truck location among some other parameters
@location nchar(20),
@time time,
@date date
AS
select
...
0
votes
0answers
40 views
How to escape string having parenthesis in like condition in code igniter
I have string Automation (QTP) having 5+ when i use this in like condition it doesn't returning value even there is a record in database.
Output Query :
SELECT `A`.`profile_name`, ...
0
votes
4answers
63 views
Delete mysql rows if contains certain content not working
I am using the following script to purge spam links from my guestbook, if I copy and past the query into phpmyadmin it works just fine, if I run the following script in my browser saved as a php file ...
0
votes
0answers
60 views
The LIKE operator in SOQL does not escape special character
Hi below is my SOQL qoery
SELECT ID,Name, ...
0
votes
2answers
31 views
Changing -like '*uu-lillebaelt.dk*' to -like '*uuoresund.dk*' gives trouble
I have two near-identical Powershell scripts.
http://poshcode.org/4112
http://poshcode.org/4113
The only difference between the two is 2 places where uu-lillebaelt has been changed to uuoresund.
...
3
votes
2answers
60 views
Why is = different from LIKE when using utf8_unicode_ci index?
I have a database table with column name defined as VARCHAR(255) COLLATE utf8_unicode_ci with a unique index. It contains the name "Grosse".
The following statement returns no rows:
SELECT name ...
0
votes
3answers
120 views
Search MySQL database with LIKE statement
I need to return search results of users in my database.
At the moment, I have managed to use the LIKE function in the MySQL query to return a results count, but I need it to echo the usernames of ...
1
vote
3answers
148 views
MySQL exact word existence check in a table Field
I've a Query. Is there any built-in function or any other method associated with MySQL, which will return rows that contains EXACT word in the database table field? I'm aware that with MySQL LIKE ...
0
votes
4answers
153 views
Using LIKE and IN and a Subquery in a single SQL Statement
I am writing a query in which I am trying to search a subquery/CTE for a wildcard substring, and nesting this logic in my CASE statement. For example:
SELECT
CASE
WHEN '%' + text + '%' IN (SELECT ...
1
vote
3answers
201 views
Matching a complicated pattern in SQL Server LIKE?
I am using a stored procedure that pulls in a string parameter and uses this as part of a WHERE table.value LIKE @pattern clause to one of its queries. Before anyone jumps down my throat about the ...
1
vote
1answer
34 views
Order by random and LIKE
I want to get random row from database, but limit it using some content.
For example, table's definition:
id | content | tags
The query is: SELECT * FROM tbl ORDER BY RAND() LIMIT 1.
Tags part ...
3
votes
1answer
129 views
String likeness algorithms
I have two strings (they're going to be descriptions in a simple database eventually), let's say they're
String A: "Apple orange coconut lime jimmy buffet"
String B: "Car
bicycle skateboard"
What ...
1
vote
3answers
54 views
Like with right value with wildcard percent
I need to search for countries ids and I ran into a problem, for example, let's take the country "Bolivia".
The Country table has a "CountryName" and "Alternative Names"
For the example of ...
-1
votes
2answers
50 views
Like with argument “_” not working
I am using the following command with SQL Server 2008 R2 to display companies name(c_name) whose second alphabet is 'e'. I am not getting any results.
select c_name from ind_comp where c_name LIKE ...
0
votes
2answers
164 views
MySQL & AJAX Predictive Search Implementation Options
I have addresses in an "address" table in a MySQL database. The table contains an address ID column and the usual assortment of address-related columns - name, line 1, line 2, suburb, state, ...
0
votes
3answers
279 views
How to overcome ( SQL Like operator ) performance issues?
I have Users table contains about 500,000 rows of users data
The Full Name of the User is stored in 4 columns each have type nvarchar(50)
I have a computed column called UserFullName that's equal to ...
1
vote
2answers
150 views
How do I perform a case-sensitive search using LIKE?
I'm trying to find records that contain a string of 6 or more alpha-numeric characters in uppercase. Some examples:
PENDING 3RDPARTY CODE27
I'm using the following statement:
SELECT Details
...
0
votes
0answers
34 views
Using operator LIKE with YQL
I'm trying to use LIKE operator with YQL but it's not working.
Looking at this documentation, I saw that is possible to use it.
Example:
select * from flickr.photos.interestingness where title ...
0
votes
1answer
126 views
Execute query in Android (SELECT column_name1 FROM table_name WHERE column_name2 LIKE '%text%' )
I want to execute this query in android
SELECT column_name1
FROM table_name
WHERE column_name2 LIKE '%text%';
and want the result to be stored in arraylist so that I can create a list view for it.
...
5
votes
1answer
300 views
VB.NET Like operator confusion with less-than sign in pattern
Dim rc As Boolean = "2" Like "*?<*?"
I don't understand why rc equals True, surely 2 is not like *?<*? at all.
The above pattern requires a string with
At least three characters (two ?'s ...
0
votes
2answers
116 views
Is there a way to use the LIKE operator from an entity framework query?
OK, I want to use the LIKE keyword from an Entity Framework query for a rather unorthodox reason - I want to match strings more precisely than when using the equals operator.
Because the equals ...
0
votes
3answers
74 views
Why does my LIKE search return everything?
I am trying to make an image search in my page full of images.
Whatever I search, it always returns all images with tag info in the database.
I made it so when someone enters text into the ...
0
votes
3answers
60 views
sql: update table1 based on lookup match in another table2
I have 2 tables:
table1:
NULL NULL Cat.XX 23 Cow.XX 87
NULL NULL Tiger.XX 99 Elephant.XX
Column1 and Column2 are ID numbers that are associated with the value in column3 and column4 ...
0
votes
5answers
269 views
SQL LIKE operator not showing any result when it should
I got a Vehicle table with lots of info but one of the columns being 'Owner' in a MSSQL table
But one of the owners i can't select when i use LIKE but can if i use =
'Silkeborg Distributionscenter' ...
0
votes
1answer
182 views
Why OrientDB doesn't use indexes for searching with “LIKE” operator?
I found that OrientDB is too slow (at least much slower than Neo4j) even on relatively small (150K) datasets when searching records by text pattern despite the presence of indices.
For example I have ...
-6
votes
2answers
118 views
I am experiencing issue with using LIKE in query in jQuery [closed]
In the database I have a column that contain numbers separated by columns from both sides (",0,1,4,"). I need to implement select depending on a number from this column. I am experiencing issue with ...
1
vote
5answers
83 views
sql Like alternate
Is there any other solution available to use instead of Like to match starts with?
here is my query to match starts with using like.
explain analyze select * from completedcalls where call_id like ...
0
votes
2answers
67 views
Order mysql result set by number of matches in like clause
The scenario is that i have implemented a search query using like operator:
.. WHERE caption LIKE 'hello%' OR text LIKE '%hello'
OR caption LIKE 'jame%' OR text LIKE 'jame%'
and the table is ...
-1
votes
7answers
52 views
Data ambigous in SQL Like
I have one table,contains a field called Component.The datas are -
date component
----------------------------
2012/12/11 PRP,PU1,P
2012/12/12 PRP
I want to get result ...
0
votes
1answer
46 views
MongoDb LIKE on two fields combined with AND
I'm looking for MySQL's equivalent of
SELECT * FROM table WHERE field1 LIKE '%somestring%' AND field2 LIKE '%anotherstring%'
I did try a couple of things, including
'field1' => '/somestring/i', ...
0
votes
1answer
43 views
JDBC Inconsistent with LIKE
Im new with JDBC, and while executing some query i get a result that is inconsistent.
If i execute this query in sql developer (connected to a Oracle DB) i get 4 results
SELECT *
FROM someTable1 ...
1
vote
1answer
108 views
How to use a text search and parameterized queries in sql without allowing regex injection
So I'm trying to wrap my head around how to combine three conflicting things (bound parameters, regex, partial-match-searching using user input) securely, and I am not sure I have discovered the ...
1
vote
1answer
466 views
SQLite accent-insensitive search
Is there any way to do an accent-insensitive LIKE query in SQLite? For example, this query:
SELECT * FROM users WHERE name LIKE "Andre%"
would return:
André the Giant
Andre Agassi
etc.
I'm using ...
2
votes
2answers
113 views
How do you force mysql LIKE be case sensitive? [duplicate]
Possible Duplicate:
Mysql Like Case Sensitive
Mysql ignores case for its LIKE comparisons.
How can you force it to perform case-sensitive LIKE comparisons?
3
votes
1answer
223 views
Django raw SQL query using LIKE on PostgreSQL
I'm trying to do a Raw SELECT in Django using LIKE in the PostgreSQL database with Psycopg2 driver.
I've tested pretty much what I've found on the web, but nothing have worked.
The situation is the ...
0
votes
1answer
90 views
How can I write a linq statement for LIKE in sql [duplicate]
Possible Duplicate:
How to do SQL Like % in Linq?
I am trying to implement the code below in LINQ, but still I couldn't find a way:
SELECT * FROM Persons
WHERE City LIKE '%tav%'
How can ...
0
votes
2answers
427 views
Compare values in two columns
I need help in returning values in a query. Consider my example below where the values in Column A are linked to Column B:
Column A Column B
--------- ---------
45008 ...
0
votes
1answer
309 views
MySQL LIKE IN() and using AND
I am trying to condense the below query which could have unlimited options based on a web form field. Users can input as many title keywords separated by commas. So my query would be constructed ...
2
votes
3answers
170 views
Linq like or other construction
I have DB oracle in my solution.
I want to have some results in this query.
Query example:
select * from doctor where doctor.name like '%IVANOV_A%';
But if i do it at LINQ i cannot get any result.
...

