Hello Friends,
I have a table which says stores 4 values
id,publisher name,bookname,time
I am firing query like
SELECT * from table where time>='sometime' group by `publisher name` order by time DESC
What I want is to select results in DESC order of time with unique publisher name.
When I fire this query, it gives me unique publisher name but time is reverse ordered, I mean it execute group by first and hence order by time doesnt take any effect.
Can any one siggest the right queyr which will give me most recent(time wise) unique listings.
Hemanshu