vote up 0 vote down star

Hi all
I am trying to get info from a table in this form :

table_1

jobid(PK) projectid desc
1 1 whatever
2 1 .
3 1 .
4 2 .
5 2 .
. . .
. . .
. . .

What I am trying to get is a query which will give me only 5 rows per projectid. ( a LIMIT on the WHERE statement but not on the whole SELECT)
If I use LIMIT, I get a total of 5 results.

Thanks in advance
nsteiner

flag
As far as I know, this can be done using MySQL specific features, so your query would not be portable. Do you need the entire rows or just the first 5 jobid values for a given projectid? – Lior Cohen Jul 26 at 12:50

migrated from serverfault.com

1 Answer

vote up 1 vote down

What you can do is build the SQL in a dynamic form using the following query:

SELECT GROUP_CONCAT( 
  DISTINCT CONCAT(
    '(select jobid, projectid, desc from jobs where projectid=',
    projectid,
    ' order by jobid limit 5)') 
  SEPARATOR ' union ') AS q 
FROM table_1;

Save the result into a variable, and then execute the saved SQL.

link|flag

Your Answer

Get an OpenID
or

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