<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Murray Hopkins' Weblog</title>
	<atom:link href="http://murrayhopkins.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://murrayhopkins.wordpress.com</link>
	<description>Mostly programming stuff - but who knows what might happen ??</description>
	<lastBuildDate>Mon, 20 Apr 2009 04:39:26 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on MySQL &#8211; left join on last (or first) record in the right table by Zumi</title>
		<link>http://murrayhopkins.wordpress.com/2008/10/28/mysql-left-join-on-last-or-first-record-in-the-right-table/#comment-22</link>
		<dc:creator>Zumi</dc:creator>
		<pubDate>Mon, 20 Apr 2009 04:39:26 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/?p=19#comment-22</guid>
		<description>I&#039;ve been able to condense my four-query script to just two because of this. Thank you!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been able to condense my four-query script to just two because of this. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL &#8211; left join on last (or first) record in the right table by Murray Hopkins</title>
		<link>http://murrayhopkins.wordpress.com/2008/10/28/mysql-left-join-on-last-or-first-record-in-the-right-table/#comment-21</link>
		<dc:creator>Murray Hopkins</dc:creator>
		<pubDate>Mon, 02 Feb 2009 23:19:40 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/?p=19#comment-21</guid>
		<description>Good pickup! Thanks for that.</description>
		<content:encoded><![CDATA[<p>Good pickup! Thanks for that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL &#8211; left join on last (or first) record in the right table by Some Random Dude</title>
		<link>http://murrayhopkins.wordpress.com/2008/10/28/mysql-left-join-on-last-or-first-record-in-the-right-table/#comment-20</link>
		<dc:creator>Some Random Dude</dc:creator>
		<pubDate>Mon, 02 Feb 2009 22:20:17 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/?p=19#comment-20</guid>
		<description>Works great unless there is more than one sales record for the date of the latest sale.  If there is more than one sale on that day you get a duplicate records for each sale.  The following change to the code fixes this.  In my case sale prices would be the same so grabbing any of them was fine for me.  The following would not work if you wanted other details like the biggest or smallest sale of the day.


This code:

 ON s1.custID = s2.custID AND s1.saledate &lt; s2.saledate
		WHERE s2.custID IS NULL

Should be changed to this:

 ON s1.custID = s2.custID AND s1.saledate &lt; s2.saledate
		WHERE s2.custID IS NULL limit 1

Maybe it will help the next person.  Regardless I learned something new today.

R.Dude</description>
		<content:encoded><![CDATA[<p>Works great unless there is more than one sales record for the date of the latest sale.  If there is more than one sale on that day you get a duplicate records for each sale.  The following change to the code fixes this.  In my case sale prices would be the same so grabbing any of them was fine for me.  The following would not work if you wanted other details like the biggest or smallest sale of the day.</p>
<p>This code:</p>
<p> ON s1.custID = s2.custID AND s1.saledate &lt; s2.saledate<br />
		WHERE s2.custID IS NULL</p>
<p>Should be changed to this:</p>
<p> ON s1.custID = s2.custID AND s1.saledate &lt; s2.saledate<br />
		WHERE s2.custID IS NULL limit 1</p>
<p>Maybe it will help the next person.  Regardless I learned something new today.</p>
<p>R.Dude</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL &#8211; left join on last (or first) record in the right table by Murray Hopkins</title>
		<link>http://murrayhopkins.wordpress.com/2008/10/28/mysql-left-join-on-last-or-first-record-in-the-right-table/#comment-17</link>
		<dc:creator>Murray Hopkins</dc:creator>
		<pubDate>Fri, 12 Dec 2008 21:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/?p=19#comment-17</guid>
		<description>I am glad you found it useful!
Murray</description>
		<content:encoded><![CDATA[<p>I am glad you found it useful!<br />
Murray</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL &#8211; left join on last (or first) record in the right table by Baldur Þór</title>
		<link>http://murrayhopkins.wordpress.com/2008/10/28/mysql-left-join-on-last-or-first-record-in-the-right-table/#comment-16</link>
		<dc:creator>Baldur Þór</dc:creator>
		<pubDate>Thu, 11 Dec 2008 21:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/?p=19#comment-16</guid>
		<description>Thanks a million, you just made my life a lot easier right now :D</description>
		<content:encoded><![CDATA[<p>Thanks a million, you just made my life a lot easier right now <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looping over a query with CFScript by Murray Hopkins</title>
		<link>http://murrayhopkins.wordpress.com/2008/10/23/looping-over-a-query-with-cfscript/#comment-15</link>
		<dc:creator>Murray Hopkins</dc:creator>
		<pubDate>Mon, 03 Nov 2008 09:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/?p=9#comment-15</guid>
		<description>Actually, in order to allow the queryRowToStruct() function to work WITHOUT an iterator (as it was originally intended to do) I needed to make a further small changed to the function. I have added that to the original post above.</description>
		<content:encoded><![CDATA[<p>Actually, in order to allow the queryRowToStruct() function to work WITHOUT an iterator (as it was originally intended to do) I needed to make a further small changed to the function. I have added that to the original post above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ext &#8211; Adding a tree to the portal example by Murray Hopkins</title>
		<link>http://murrayhopkins.wordpress.com/2007/10/12/ext-adding-a-tree-to-the-portal-example/#comment-14</link>
		<dc:creator>Murray Hopkins</dc:creator>
		<pubDate>Thu, 10 Apr 2008 21:52:57 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/2007/10/12/ext-adding-a-tree-to-the-portal-example/#comment-14</guid>
		<description>Hi Nathan,

You might want to check the Ext forum using BLANK_IMAGE_URL as a search term. I suspect your problem is related to this.

Cheers,
Murray</description>
		<content:encoded><![CDATA[<p>Hi Nathan,</p>
<p>You might want to check the Ext forum using BLANK_IMAGE_URL as a search term. I suspect your problem is related to this.</p>
<p>Cheers,<br />
Murray</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ext &#8211; Adding a tree to the portal example by Nathan Stanford</title>
		<link>http://murrayhopkins.wordpress.com/2007/10/12/ext-adding-a-tree-to-the-portal-example/#comment-13</link>
		<dc:creator>Nathan Stanford</dc:creator>
		<pubDate>Thu, 10 Apr 2008 14:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://murrayhopkins.wordpress.com/2007/10/12/ext-adding-a-tree-to-the-portal-example/#comment-13</guid>
		<description>After I download it and get most of it working the only part I can not get to work is the tree icons and I guess due to them not showing up the look of the tree is all in two broken images at the top of the side panel.

what do you think I can do to fix this?

Thanks  - new to using ext 2,
Nathan</description>
		<content:encoded><![CDATA[<p>After I download it and get most of it working the only part I can not get to work is the tree icons and I guess due to them not showing up the look of the tree is all in two broken images at the top of the side panel.</p>
<p>what do you think I can do to fix this?</p>
<p>Thanks  &#8211; new to using ext 2,<br />
Nathan</p>
]]></content:encoded>
	</item>
</channel>
</rss>
