Tagged Questions
For topics related to the 'like' functionality in social networks such as Facebook, '+1' in Google+, etc.
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 ...
12
votes
3answers
3k views
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 and LIKE are. I did read a couple of articles but couldn't find anything that ...
11
votes
4answers
19k views
Escape a string in SQL Server so that it is safe to use in LIKE expression
How do I escape a string in SQL Server's stored procedure so that it is safe to use in LIKE expression.
Suppose I have an NVARCHAR variable like so:
declare @myString NVARCHAR(100);
And I want to ...
9
votes
4answers
2k views
Element or class LIKE selector for JQuery?
For whatever reason I have these classes called .main_sub1, .main_sub2 etc. Never mind why I can't have .main .sub.
Is there a way with JQuery, sort of in the way it is possible to do with ...
9
votes
2answers
1k views
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.
Are these queries truly equivalent?
SELECT * FROM FOO WHERE BAR LIKE 'X'
SELECT * FROM FOO WHERE BAR ...
7
votes
2answers
121 views
LIKEs and ORs and stuff in Linq
I'm trying to write a linq-to-sql query using || that behaves the same way as the OR in SQL when combined with a LIKE/Contains.
SQL:
SELECT * FROM Users WHERE GroupNumber = 'A123456' OR (FirstName ...
7
votes
3answers
1k views
how to safely generate a SQL LIKE statement using python db-api
I am trying to assemble the following SQL statement using python's db-api:
SELECT x FROM myTable WHERE x LIKE 'BEGINNING_OF_STRING%';
where BEGINNING_OF_STRING should be a python var to be safely ...
7
votes
11answers
3k views
SQL LIKE Performance with only the wildcard (%) as a value
I am wondering what the performance of a query would be like using the LIKE keyword and the wildcard as the value compared to having no where clause at all.
Consider a where clause such as "WHERE a ...
7
votes
1answer
7k views
Parameter in like clause JPQL
I am trying to write a JPQL query with a like clause:
...LIKE '%:code%'
I would like to have code=4 and find
455
554
646
...
I cannot pass :code = '%value%'
namedQuery.setParameter("%" + ...
6
votes
4answers
1k views
Mysql: Order by like?
assume that we are performing search using keywords: keyword1, keyword2, keyword3
there are records in database with column "name":
1: John Doe
2: Samuel Doe
3: John Smith
4: Anna Smith
now ...
6
votes
5answers
243 views
SQL: Is it possible to 'group by' according to 'like' function's results?
I am using Oracle SQL and I want to group some different rows that 'like' function results. To elaborate with an example:
Let's assume I have a table MESA with one of the columns is a huge string. ...
6
votes
5answers
2k views
SQL Server Index - Any improvement for LIKE queries?
We have a query that runs off a fairly large table that unfortunately needs to use LIKE '%ABC%' on a couple varchar fields so the user can search on partial names, etc. SQL Server 2005
Would adding ...
6
votes
5answers
2k views
linq to entities generated sql
I am having some problems with linq to entities in the ado.net entity framework. Basically what I'm doing is this:
var results = (from c in companies
where c.Name.StartsWith(letter)
select c);
...
6
votes
3answers
5k views
Avoiding SQL Injection in SQL query with Like Operator using parameters?
Taking over some code from my predecessor and I found a query that uses the Like operator:
SELECT * FROM suppliers
WHERE supplier_name like '%'+name+%';
Trying to avoid SQL Injection problem and ...
5
votes
1answer
293 views
Like Button Not Showing Counts
This happens on any web browser. When I go to the page, I see the like button not showing any counts. Then I...
Press on the Like button.
I then see the box say +1.
I refresh the page.
I no longer ...
5
votes
4answers
128 views
Match '%' sign when searching in MySQL database
I would like to match this 'wildcard %' in MySQL.
I tried using escape \% and it is not working.
5
votes
1answer
1k views
doctrine2 dql, use setParameter with % wildcard when doing a like comparison
I want to use the parameter place holder - e.g. ?1 - with the % wild cards. that is, something like: "u.name LIKE %?1%" (though this throws an error). The docs have the following two examples:
1.
// ...
5
votes
1answer
533 views
Simulate F11 with javascript
How can I simulate F11 (fullscreen not maximaze browser window) as with flash:
http://www.broculos.net/files/articles/FullscreenFlash/flashFullscreen.html ?
in flash: fscommand("fullscreen", true )
...
4
votes
2answers
75 views
SQL Server, combining LIKE and IN?
Is there an easy way to combine LIKE and IN in one statement in SQL Server, without using a lot of AND and OR?
e.g. I know in MySQL you can do it this way:
SELECT * FROM table1 WHERE column1 REGEXP ...
4
votes
4answers
197 views
Why is the T-SQL “LIKE” operator not evaluating this expression like I think it should?
I am attempting to error trap a T-SQL variable name by making sure that the value of the variable is prefixed with a bracket "[".
Here's an example of how I am trying to do this:
DECLARE @thing ...
4
votes
2answers
163 views
Need help on like/dislike voting system
I'd like to get some help to build a like/dislike sorting algorithm to find the best entries. I thought about a way to do it, but there are two major flaws with this method and I'd like to know if ...
4
votes
3answers
53 views
How to search for “%” in sql table-column
I have a table with a column "Remarks"...I would like to search "%" in this column . How do I do that ?
Thanks
4
votes
4answers
1k views
LIke operator in LINQ to Objects
Im trying to emulate LIKE operator in LINQ to Objects. Here my code:
List<string> list = new List<string>();
list.Add("line one");
list.Add("line two");
list.Add("line three");
...
4
votes
4answers
3k views
Make Oracle SQL LIKE query case insensitive
SQL query for LIKE is case-sensitive.
Is it possible make it case-insensitive?
4
votes
3answers
150 views
MySQL Sorting Problem for an autocomplete
I have an autocomplete on my site where a user enters a class at their school. It then provides a dropdown of Classes that have the words they entered somewhere in their fields. The Classes table ...
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
6answers
715 views
Sql Like to RegEx
Is there a good way to convert Regular Expression into LIKE inside a Function (MSSQL)?
The sproc does not get more complicated than this:
...
4
votes
1answer
2k views
How to escape wildcard characters in “like” clause in HQL?
How can I escape the wildcard characters in a like clause?
E.g.:
select foo from Foo as foo where foo.bar like '%' || :filter ||'%'
query.setParameter("filter", "%");
query.list();
// I'd ...
4
votes
5answers
2k views
How can I optimize/refactor a TSQL “LIKE” clause?
I have a table with 117000 or so records. I need to perform a search that checks 3 separate fields for a given string pattern.
My where clause is as follows:
field1 LIKE '%' + @DESC + '%'
OR field2 ...
4
votes
1answer
661 views
MySQL Fulltext Searching ideographic (Asian) characters
I have a database full of Asian-character filled records (Chinese, Japanese, and Korean) alongside those with Latin-character filled records (English, Français, you name it), and I want to perform ...
4
votes
3answers
12k views
LINQ to SQL - select where text like string array
I have a List<string> of variable count, and I want to query (via LINQ) a table to find any items that contain any of those strings in the Text column.
Tried this (doesn't work):
items = from dbt ...
4
votes
5answers
602 views
Access - What's wrong with this query
I'm trying to get a query working that takes the values (sometimes just the first part of a string) from a form control. The problem I have is that it only returns records when the full string is ...
3
votes
2answers
242 views
FQL “like” table not returning any results
I'm using the Graph API explorer to run this seemingly simple query to get a list of post_ids (stream) from the like table.
...
3
votes
2answers
79 views
SQL Case and LIKE in where clause
I have been breaking my head over this hope it's possible
declare @locationType varchar(50);
declare @SearchTerm NVARCHAR(100);
SELECT column1, column2
FROM whatever
WHERE
CASE @locationType
...
3
votes
1answer
453 views
Object Type Not Allowed Error Appeared Recently in Debugger
Out of nowhere, my whole site is throwing an error when going through the Facebook debugger: ...
3
votes
4answers
53 views
LIKE clause that will select '2' but not '12' from a string of characters
I have a legacy database that includes a field 'User_Defined' containing a string describing which projects each record belongs to. The project IDs are comma-separated numbers in that string. For ...
3
votes
1answer
311 views
Facebook meta tags scraped with locale not working
My website is multi-language and I have a FB like button. I'd like to have the like posts in different languages.
According to Facebook documentation, if I use the meta tag og:locale and ...
3
votes
2answers
499 views
Facebook fan page going immediately to wall after like, used to go back to the app
I use fan gates on a lot of different fan pages. The idea has always been you land on the page and see a like us to gain something after clicking like the page reloads and now the user sees the ...
3
votes
1answer
538 views
How to make facebook like button shows a mobile-optimized Facebook login page?
I have a mobile website designed to be shown in a iPhone app.
There is a Facebook like button in that mobile web.
If the user click the like button without logging in, the button will show a ...
3
votes
1answer
83 views
Good alternatives/practices to “LIKE” with PostgreSQL and PHP?
I'm working with a Postgres database that I have no control over the administration of. I'm building a calendar that deals with seeing if resources (physical items) were online or offline on a ...
3
votes
5answers
219 views
Public votes and avoiding mutliple vote : using cookies or IP?
How do you handle public vote (anyone can "like or dislike" an article) and to restrict him to vote only one time ?
Have I to use cookies ? (with the problem that he can remove the cookie and vote ...
3
votes
2answers
1k views
Is there a Hive equivalent of SQL “not like”
While Hive supports positive like queries: ex.
select * from table_name where column_name like 'root~%';
Hive Does not support negative like queries: ex.
select * from table_name where ...
3
votes
1answer
89 views
What is a good way to index for such a query?
Jeff mentions in http://blog.stackoverflow.com/2011/03/redesigned-users-page/ that
Searches are “match anywhere” again, but the minimum match is now 3 characters.
Excellent stuff! This was ...
3
votes
1answer
350 views
C# and SQL LIKE condition: '%' works as single-character wildcard
I have query like that in my DataSet (database is located in .mdf file):
SELECT *
FROM TableName WHERE SomeField LIKE @Param
Table TableName contains record Значение in SomeField ...
3
votes
2answers
700 views
Postgresql - CREATE TABLE SYNTAX ERROR USING LIKE -
i'm trying to create a temp table from a parent table:
This is the code that i execute with pgAdmin III ( or by JDBC in Java ):
CREATE TEMP TABLE table1_tmp LIKE table1 INCLUDING DEFAULTS;
And the ...
3
votes
2answers
249 views
mysql category tree search
I have the following schema on MySQL 5.1
CREATE TABLE `mytest` (
`category` varchar(32) ,
`item_name` varchar(255)
KEY `key1` (`category`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
category ...
3
votes
1answer
1k views
Use LIKE %..% with field values in MySQL
I stumbled into a delicate SQL problem when I needed to use a value from a field inside a LIKE %..% statement.
Example:
SELECT t1.Notes, t2.Name
FROM Table1 t1, Table2 t2
WHERE t1.Notes LIKE ...
3
votes
8answers
156 views
Is it possible to use WHERE IN along with LIKE?
If I have to search for some data I can use wildcards and use a simple query -
SELECT * FROM TABLE WHERE COL1 LIKE '%test_string%'
And, if I have to look through many values I can use -
SELECT ...
3
votes
3answers
231 views
Finding similar names in multiple tables
I have multiple tables with different customer names. I am trying to find out how many times the same name is in a table. The challenge here is that someone could have entered the name as "John Smith" ...
3
votes
4answers
975 views
Python String Formats with SQL Wildcards and LIKE
I'm having a hard time getting some sql in python to correctly go through MySQLdb. It's pythons string formatting that is killing me.
My sql statement is using the LIKE keyword with wildcards. I've ...