vote up 3 vote down star
2

hi i have a db with records with date (timestamp) i need to select 10 records for each day (there are many more per day) and order them by few columns...

how should that query look like?

flag
Have you even tried to attempt a go? – Crises of Identity Jul 18 at 7:15
I've spent more time than I'd like to admit trying to accomplish this in a single query, and I'm calling it quits. I would probably accomplish this by getting a list of distinct timestamps, and perform secondary queries in a loop. That said, this question really piqued my interest and I'll be watching it to see if a solution comes along. Thanks for giving me something to exercise my brain on. – eyelidlessness Jul 19 at 9:10

6 Answers

vote up 1 vote down

If you just need ten rows — any ten rows, you don't care which, and there is no guarantee they're random, you can use the LIMIT clause. Example:

SELECT whatever
  FROM tablename
  WHERE datecol = '2009-07-13'
  LIMIT 10

That'll give you ten rows. Its up to MySQL which ten. You can use ORDER BY or additional WHERE items to pick a certain 10. For example, here is the most recent 10:

SELECT whatever
  FROM tablename
  WHERE datecol = '2009-07-13'
  ORDER BY timecol DESC
  LIMIT 10

LIMIT is documented as part of the SELECT syntax.

link|flag
no, i need 10 rows for each day, day 1 - 10 rows sorted by some column, day 2 - 10 rows.... for all the data in db – f32v Jul 18 at 7:24
vote up 1 vote down

If you are working with MySQL, and the column is of type timestamp. You need to convert it to Date and then compare it with the date you want to compare with.

SELECT * FROM tablename tName

where

Date(timestampFieldName) = Date('2009-07-08')

limit 0,10

link|flag
i need a breakdown of days with 10 records from each, not for 1 date and limit of 10 – f32v Jul 18 at 7:48
What you want is possible with sub query but sub query in mySql dose not support limit. – Umesh Aawte Jul 18 at 7:48
1  
Sub-queries in MySQL support limit; this works just fine (in 5.0 at least): select * from (SELECT whatever FROM t WHERE datecol = '2009-07-03' LIMIT 10) t – derobert Jul 18 at 19:16
OK. then solution below will work Bu I am using MySQL version 5.0.37 and got error code. 1235 This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery' – Umesh Aawte Jul 19 at 7:54
Sounds like maybe MySQL supports LIMIT in certain subqueries, but not others. – derobert Jul 19 at 18:58
vote up 1 vote down

You have to get your 10 records per day in a subquery for each day and join them to the main table by a left join, so you'll get max 10 records per day. The SQL would look like this:

SELECT t1.columns
FROM mytable t1 
  LEFT JOIN 
     (SELECT pk FROM mytable t2 
     WHERE t2.datecol = t1.datecol 
     ORDER BY t2.orderFor10Rows LIMIT 10) t3
  ON t1.pk = t3.pk
ORDER BY t1.anyOtherColumns

No warranty for proper MySQL-syntax as I'm not used to it.

link|flag
Unknown column 't1.datecol' in 'where clause' – eyelidlessness Jul 19 at 8:06
vote up 0 vote down

Here is a possible solution, but it will require a little work outside of sql. This is from a live example of a list of movies. All you need to do after this is pull the first 10 movies of the concatenated list.

SELECT Movie_Release_Year, GROUP_CONCAT( Movie_Title
ORDER BY Movie_Title ) 
FROM movies
GROUP BY Movie_Release_Year

see Group Concat for more details

link|flag
vote up 0 vote down

After looking at (the ever excellent) xaprb blog from Baron Schwarz, http://www.xaprb.com/blog/2006/12/02/how-to-number-rows-in-mysql/ I wonder if the use of user-defined variables could work here.

select hiredate, ename, sal
from ( select hiredate, ename, sal,
       @num := if(@hiredate = hiredate, @num + 1, 1) as row_number,
       @hiredate := hiredate as dummy
     from emp_temp
) as x
where row_number < 3
order by hiredate, ename, sal

I've only tried the above for small sets of data, but it seems to work in bringing back just two records per hiredate. So far as I can tell from limited testing it should scale up for greater data sets. ( there may be performance issues in large data sets as Mysql is creating a temporary table)

link|flag
vote up 0 vote down

If you're working from a programming language and not directly querying the server, you could dynamically construct a query for the union of the 'Limit 10' or 'Top 10' for each day. Not incredibly efficient, but it would at least work and be easy to debug and modify later. You could even create the query dynamically via an SP in the server and work straight from there.

link|flag

Your Answer

Get an OpenID
or

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