I would like to run a query like
select ... as days where `date` is between '2010-01-20' and '2010-01-24'
And return data like:
days ---------- 2010-01-20 2010-01-21 2010-01-22 2010-01-23 2010-01-24
|
|
This solution uses no loops, procedures, or temp tables. The subquery generates dates for the last thousand days, and could be extended to go as far back or forward as you wish.
Output:
Notes on Performance Testing it out here, the performance is surprisingly good: the above query takes 0.0009 sec. If we extend the subquery to generate approx. 100,000 numbers (and thus about 274 years worth of dates), it runs in 0.0458 sec. Incidentally, this is a very portable technique that works with most databases with minor adjustments. |
|||||||||||||||||||||
|
|
Here is another variation using views:
And then you can simply do (see how elegant it is?):
|
|||
|
|
|
The old school solution for doing this without a loop/cursor is to create a
You need to populate the table with enough records to cover your needs:
Once you have the
The absolute low-tech solution would be:
What would you use it for?To generate lists of dates or numbers in order to LEFT JOIN on to. You would to this in order to see where there are gaps in the data, because you are LEFT JOINing onto a list of sequencial data - null values will make it obvious where gaps exist. |
|||||
|
|
if you will ever need more then a couple days, you need a table. http://stackoverflow.com/questions/2149688/create-a-date-range-in-mysql then,
|
|||||
|
|
Alright.. Try this:
http://www.devshed.com/c/a/MySQL/Delving-Deeper-into-MySQL-50/ Use that to, say, generate a temp table, and then do a select * on the temp table. Or output the results one at a time. |
|||
|
|
|
You cannot do that in mysql alone. You should generate the range in your server-side language of choice. |
|||||||||||
|
Generate dates between two date fieldsIf you are aware with SQL CTE query, then this solution will helps you to solve your questionHere is example We have dates in one table Table Name: “testdate”
Require Result:
Solution: WITH CTE as Explanation: CTE Recursive query explanation
For example
Result Specification
Result
|
||||
|
|