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.

link|improve this question
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 '09 at 12:50
feedback

migrated from serverfault.com Jul 26 '09 at 11:48

This question came from our site for system administrators and desktop support professionals.

1 Answer

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|improve this answer
feedback

Your Answer

 
or
required, but never shown