vote up 0 vote down star

Hi all,
I asked a similar question yesterday, but now I have a slight twist. Since I already gave credit to an answer, I've decided to create a new question.

Here's what I'm trying to do: Select an arbitrary number of rows, but placing a limit on the number of selected rows of one field.

$query = "SELECT test_id, field1, field2 FROM tablename  WHERE field1 = 'string' LIMIT 5"

So here's the problem: I want a max of one result from each 'test_id', so if a row is selected with test_id 1, then it will skip over any other possible results with test_id 1.

Any ideas?

EDIT: Would GROUP BY test_id LIMIT 5 ... limit the total number of results, or those with the same test_id. I'd like to limit to each test_id to 1, with a total of no more than 5.

Thanks,
Michael

flag

1 Answer

vote up 1 vote down check

If you use GROUP BY test_id, MySQL will take one of the rows to fetch the values.

Doesn't work with all RDBMS (SQL server for instance), because others require aggregation function on the SELECTed fields that aren't in the GROUP BY clause.

link|flag
So if I have a GROUP BY test_id ... followed by a LIMIT 5 Does it limit to 5 total results, or does it limit the results retained per test_id – Michael Jul 30 at 19:56
the total result will not exceed five rows. it will pick one undeterministic (but not random) row per test_id – streetpc Jul 30 at 20:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.