woolyg Posted September 14, 2007 Share Posted September 14, 2007 Hi, I'm starting to look into a basic search on a table: SELECT field1, field2, field3, DISTINCT MATCH(field1, field2, field3) AGAINST ('keyword' IN BOOLEAN MODE) as score FROM table WHERE MATCH(field1, field2, field3) AGAINST ('keyword' IN BOOLEAN MODE) order by score DESC ..but if I enter more than one word in the keyword bit, some results are replicated (ie, return 2 rows of exactly the same info, but different scores). Is there a way to only return unique rows per result set? Any help appreciated. Woolyg. Link to comment https://forums.phpfreaks.com/topic/69277-solved-limiting-a-mysql-query-to-one-line/ Share on other sites More sharing options...
gerkintrigg Posted September 14, 2007 Share Posted September 14, 2007 why not do SELECT DISTINCT id, blah blah blah.... that should work if you do it on the primary key LIMIT 1 will work for only one record, but not unique rows. Link to comment https://forums.phpfreaks.com/topic/69277-solved-limiting-a-mysql-query-to-one-line/#findComment-348362 Share on other sites More sharing options...
fenway Posted September 15, 2007 Share Posted September 15, 2007 Don't know what you mean about unique rows... if you're only using a single table, a row can never be returned twice. Link to comment https://forums.phpfreaks.com/topic/69277-solved-limiting-a-mysql-query-to-one-line/#findComment-349036 Share on other sites More sharing options...
woolyg Posted September 17, 2007 Author Share Posted September 17, 2007 OK - thanks for the info! - woolyg. Link to comment https://forums.phpfreaks.com/topic/69277-solved-limiting-a-mysql-query-to-one-line/#findComment-350133 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.