[MySQL] Selecting data using DISTINCT

Glaanieboy

OSNN Veteran Addict
Joined
6 Mar 2002
Messages
2,628
I have the following table (for a forum I am building):
Code:
+----------+--------+--------+------------+--------------+------------+
| threadid | postid | userid | name       | title        | body       |
+----------+--------+--------+------------+--------------+------------+
|        1 |      1 |      0 | Glaanieboy | No title     | Hello!!!   |
|        1 |      2 |      0 | Glaanieboy | RE: No title | Hi!!!      |
|        2 |      3 |      0 | G-Man      | Welcome!     | I am here! |
+----------+--------+--------+------------+--------------+------------+

What I want is to select threadid, name and title, but only the distinct two threadid's, meaning I should get a result like this:
Code:
+----------+--------------+------------+
| threadid | title        | name       |
+----------+--------------+------------+
|        2 | Welcome!     | G-Man      |
|        1 | No title     | Glaanieboy |
+----------+--------------+------------+
I have tried using the query: "SELECT DISTINCT threadid, title, name FROM forum ORDER BY threadid DESC;", but that shows also the double threadid's, it's like I used a query without the DISTINCT part. Can someone help me please?
 

Members online

No members online now.

Latest profile posts

Also Hi EP and people. I found this place again while looking through a oooollllllldddd backup. I have filled over 10TB and was looking at my collection of antiques. Any bids on the 500Mhz Win 95 fix?
Any of the SP crew still out there?
Xie wrote on Electronic Punk's profile.
Impressed you have kept this alive this long EP! So many sites have come and gone. :(

Just did some crude math and I apparently joined almost 18yrs ago, how is that possible???
hello peeps... is been some time since i last came here.
Electronic Punk wrote on Sazar's profile.
Rest in peace my friend, been trying to find you and finally did in the worst way imaginable.

Forum statistics

Threads
62,015
Messages
673,494
Members
5,621
Latest member
naeemsafi
Back