problem with GROUP BY and ORDER BY
Posted on
16th Feb 2014 07:03 pm by
admin
i usually use this query to display the last 10 entries from a sql table:
Code: $query = "SELECT search_time, search_keywords FROM phpbb_popsearch ORDER BY search_time DESC limit 35";
as you can see it will order the results by "search_time" so the latest entries are listed first
Did you know?Explore Trending and Topic pages for more stories like this.
normally the result would be something like this:
Quotenew entry
duplicate
another entry
bla bla
348237
543543
duplicate
but now i just want to include a "GROUP BY" in this sql request
Code: $query = "SELECT search_time, search_keywords FROM phpbb_popsearch ORDER BY search_time DESC limit 35";
but with the GROUP BY my sql query isn't ordered correctly anymore.
the result would be something like this:
QuoteQuotenew entry
another entry
bla bla
348237
543543
duplicate
notice the "duplicate" entry was grouped together, but it's not in the second first position anymore ???
i was expecting a result like this:
Quotenew entry
duplicate
another entry
bla bla
348237
543543
Since entry called "duplicate" is the second last added entry....
i hope you understand what i mean
No comments posted yet
Your Answer:
Login to answer
175
43
Other forums
cURL and Sessions
Ohai.
So, I'm trying to cURL a bunch of things off of a page, and put them into a session. I'
Php - mysql select?
hi, i have this code:
Code: <?php
session_start();
// dBase file
include &quo
php forms and database navigatio
Hello,
I'm new to php and i'd like to post the following.
I have written code to get records f
extending tidy
I have problem with type-hinting and extending tidy. This code creates error:
Code: class cMyTidy
parse error
Parse error: syntax error, unexpected '[', expecting ')' in /Users/admin/Sites/phptest/array.php on
Echo-ing MySQL content and Keep Formatting?
I have data in my MySQL such as:
QuoteBlah blah
Blah blah
etc
but when i ech
how to make database item unique
Hey guys,
is it possible to do this:
I have the database item $title being pulled for
Coding Critique
I was hoping someone could take a second and look down my code and see if they see any problems with
EU VAT Package 2010
Does any one know whether SAP will be developing new reporting functionality due the new VAT rules t
XML Grouping
I'm using xml_parse_into_struct to get all my elements, but now I need to group them. For example, h