Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get data from mysql where the date are at the end of month.
Example:

id date       name
===================
1  2002-02-23 aaaa
2  2002-02-23 bbbb
3  2002-03-01 cccc

As you can see the last input on february are only at date 23 because of various reason.
Is there a way so that i can only select the last date of month existed in database?

share|improve this question
1  
so if thats the case, what are the result based on your given records? – JW 웃 Aug 28 '12 at 7:43

5 Answers

Try like this

SELECT * FROM my_table WHERE date in (select max(date) from my_table)

it will show the maximum date...in your words date are at the end of month.You can add "GROUPBy" for better result

share|improve this answer

Here is an SQL Fiddle

Try this:

SELECT MAX(date)
FROM yourTable
GROUP BY YEAR(date), MONTH(date)
share|improve this answer

@Morgan try this way i think it will give you exact results.

SELECT * FROM table WHERE date in (select DISTINCT max(date) from table GROUP BY MONTH(date ))

share|improve this answer
did u get required result? – mansoor Aug 29 '12 at 4:39

you need to take self join on table using derived table by grouping records with year-month:

SELECT a.*
FROM table_name a
     INNER JOIN (
            SELECT MAX(`date`) AS `date`
            FROM table_name
            GROUP BY DATE_FORMAT(`date`, '%Y%m')
           ) b
        ON a.`date` = b.`date`;

SQLFIDDLE DEMO

Query to get only last dates of month:

SELECT MAX(`date`) AS `date`
FROM table_name
GROUP BY DATE_FORMAT(`date`, '%Y%m');
share|improve this answer

You can select last month dates from your table with this query:

select max(`Date`) from t group by DATE_FORMAT(`Date`,'%Y%m')
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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