![]() |
[SQL] Usage of DISTINCT
Just a quick one really...
If i have the statement: Code:
SELECT DISTINCT t1.column1, t2.column2 Background: I'm trying to select the last five posts from a forum database but i dont want to show more than one post from the same subforum but if all of the last 5 posts were by the same person on different subforums i still want to show them. I'll thank you later :) |
you could try using a grouped sub-query to give you the last post for each subforum, ordered by date - and select the top 5 off the list.
|
Something like
Code:
select |
Unfortunately the mysql server i'm using doesn't support subqueries, they havent updated the version of mysql to the most recent one yet.
|
Are you able to identify and select posts from their forum and timestamps?
If so you could use something like: Code:
select top 5 |
Solved!! EDIT: NOT!
Well i originally posted a big thank you here but the SQL query i came up with just seemed to work because the last 5 posts in my forum were all from different topics. Here's what i'm dealing with now:
Code:
SELECT Its getting quite frustrating and i think i may have to use two queries and a bit of php to kludge them together which i'm not too keen on. Oh, and that "top 5" statement doesnt work with this mysql server either :hmm: |
Quote:
1. Your query groups by p.post_topic, yet you are still selecting from other columns that are not aggregated (with max, min, etc.). This seems like a SQL syntax violation -- all columns in the SELECT clause that are not aggregated should appear in the GROUP BY clause. 2. LEFT JOINs can be expensive, and if you can get away without having to use them, your query will run faster. So, in this case, if p.post_topic is NEVER NULL, then the LEFT JOIN with t is wasted and should be converted into an INNER JOIN. Similar cases with the other LEFT JOINs. |
1. The code doesnt yield any error messages
2. Using inner joins (using "where" to join the tables) gives the same result set |
Quote:
Code:
SELECT DISTINCT ON(column1[, column2...]) * FROM whatever DISTINCT is almost never the Right Way to do something. Your SQL looks expensive, in similar situations I would tend to have something like: Code:
SELECT sp.post_id, t.whatever, f.whatever, u.whatever If your database doesn't support that construct (whatever they are called - dynamic tables? I think), then you probably want two queries: get the post_id's with the first and stick them in an IN() in the second. Unless you are running Oracle, the cost of the extra query is completely negligible (and even with Oracle it probably won't be noticeable), just prepare both queries in advance. Of course if performance does become an issue (ie huge forum and this is a very frequent query), you can think about denormalizing and putting the forum_id into the posts table; but of course lots of people have lots of strong (and divergent) opinions about the merits of doing that. Anyway, I hope any of this helped at all, I realize it's not exactly specific to your situation. |
All times are GMT -8. The time now is 03:19 AM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project