Tagged Questions
2
votes
1answer
654 views
MYSQL: Like Method, Similar Words - But Don't Show the Searched Word
actually i use this method to show similar words for a search request..
$query = "SELECT * FROM searches WHERE Query LIKE '%$search%' ORDER BY Query";
if someone searches for "nelly" it looks up ...
2
votes
2answers
195 views
Mysql join on similar columns
I want to join table1 with table2 on column 'Name', but table2.Name has an 'e' in front of all the names (if table1.name=ABC,table2.name=eABC). How am I supposed to use a join for those two?
I tried ...
1
vote
1answer
50 views
Mysql-How to enforce the number of similar recodes retrieved?
I am working on a website that shows videos similar to that of youtube. This website has a section that shows the most ten similar videos used the FULL TEXT search to get the similar ones.
SELECT * ...
0
votes
0answers
58 views
MYSQL: Find and delete similar records - Updated with example
I'm trying to dedup a table, where I know there are 'close' (but not exact) rows that need to be removed.
I have a single table, with 22 fields, and uniqueness can be established through comparing 5 ...
0
votes
2answers
347 views
MySQL query to match similar words/sentences
I have a table in a MySQL Database which has this structure:
CREATE TABLE `papers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(1000) COLLATE utf8_bin DEFAULT NULL,
`booktitle` ...
0
votes
1answer
102 views
MySQL select statement similar to entered value
I've been searching all over and trying out different approaches but I'm just not getting what I need.
Is there a possibility in MySQL to select a db entry similar to a string value entered in a ...
0
votes
2answers
427 views
Find rows with duplicate/similar column values MySQL
I want to select from the following table all the rows which have similar values in the fname column as the first in their order. IOW from this table I want to retrieve rows with ids 2,5 and 7 ...