Jump to content

[SOLVED] Distinct join sorting


tradet

Recommended Posts

Hello, I'm having trouble while creating my own blogging page.

 

I have a table called blog

CREATE TABLE `blog` (\n  `id` int(10) unsigned NOT NULL auto_increment,\n  `title` varchar(200) NOT NULL,\n  `entry` text NOT NULL,\n  `date_entered` datetime NOT NULL,\n  PRIMARY KEY  (`id`),\n  FULLTEXT KEY `full` (`entry`,`title`)\n) ENGINE=MyISAM AUTO_INCREMENT=51 DEFAULT CHARSET=latin1

 

and one called comments

CREATE TABLE `comments` (\n  `id` int(10) unsigned NOT NULL auto_increment,\n  `blog_id` int(10) unsigned NOT NULL,\n  `ip` varchar(20) NOT NULL,\n  `date_entered` datetime NOT NULL,\n  `user_id` int(10) unsigned NOT NULL,\n  `entry` text NOT NULL,\n  `name` varchar(45) NOT NULL,\n  `link` varchar(45) default NULL,\n  `approved` tinyint(1) NOT NULL,\n  PRIMARY KEY  (`id`)\n) ENGINE=MyISAM AUTO_INCREMENT=44 DEFAULT CHARSET=latin1

 

Short thing: I've got a 'blog_id' in comments which connects with the 'id' in blog, to get what comment is to what post.

 

I want to get id (or blog_id from comment) and title from blog where comments.blog_id = blog.id and I want to sort by comments.date_entered.

 

 SELECT DISTINCT comments.blog_id, blog.title
FROM comments
JOIN blog
WHERE comments.blog_id = blog.id
AND comments.approved = '1'
ORDER BY comments.date_entered DESC
LIMIT 6 

 

Forgot that I also want comments.approved = '1'.

 

Everything works except it's not sorted and I can't get it to sort whatever I do.

 

I'm newish so take it slow, appreciate all help.

Link to comment
Share on other sites

Okay

SELECT DISTINCT comments.blog_id, blog.title
FROM comments
JOIN blog ON comments.blog_id = blog.id
WHERE comments.approved = '1'
ORDER BY comments.date_entered DESC
LIMIT 6

Still doesn't sort it right.

 

That query

blog_id 
49
46
37
45
34
33 

 

Correct (should be)

blog_id 
49 
33 
37 	
46
37
45 

Link to comment
Share on other sites

Some testing:

SELECT DISTINCT comments.blog_id, blog.title
FROM comments
JOIN blog ON comments.blog_id = blog.id
WHERE comments.approved = '1'
ORDER BY comments.date_entered DESC
LIMIT 6 

outputs

blog_id 	title
49 	Flashing neo freerunner
46 	L
37 	How to become a good programmer?
45 	The breast month
34 	New author
33 	Open source and the masses

Problem here: not sorted

 

SELECT DISTINCT comments.blog_id, comments.date_entered, blog.title
FROM comments
JOIN blog ON comments.blog_id = blog.id
WHERE comments.approved = '1'
ORDER BY comments.date_entered DESC
LIMIT 6 

outputs

blog_id 	date_entered 	title
49 	2008-10-07 18:41:14 	Flashing neo freerunner
33 	2008-10-07 00:52:26 	Open source and the masses
37 	2008-10-07 00:48:33 	How to become a good programmer?
46 	2008-10-05 19:45:16 	L
37 	2008-10-01 21:39:36 	How to become a good programmer?
45 	2008-10-01 21:24:07 	The breast month

Problem here: blog_id not unique

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.