<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>cfPadawan.com - MySQL</title>
			<link>http://www.cfpadawan.com/index.cfm</link>
			<description>cfPadawan.com</description>
			<language>en-us</language>
			<pubDate>Sun, 05 Sep 2010 13:12:43 -0500</pubDate>
			<lastBuildDate>Tue, 11 May 2010 12:38:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>andy@cfpadawan.com</managingEditor>
			<webMaster>andy@cfpadawan.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>andy@cfpadawan.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Hit me baby one more time (MySQL Style)</title>
				<link>http://www.cfpadawan.com/index.cfm/2010/5/11/Hit-me-baby-one-more-time-MySQL-Style</link>
				<description>
				
				So yesterday I blogged on how to create a T-SQL custom scalar function in SQL Server to clean up a DATETIME and output it like this...
05/11/2010 11:37 AM.
So for anyone who is primarily using MySQL (most of our clients use SQL Server but we also take care of some MySQL driven CF apps too) here is the same code for creating and calling your very own inline function on the MySQL platform.  [More]
				</description>
				
				<category>RDBMS</category>
				
				<category>ColdFusion</category>
				
				<category>MySQL</category>
				
				<pubDate>Tue, 11 May 2010 12:38:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2010/5/11/Hit-me-baby-one-more-time-MySQL-Style</guid>
				
				
			</item>
			
			<item>
				<title>A quick SQL Server tip</title>
				<link>http://www.cfpadawan.com/index.cfm/2010/2/12/A-quick-SQL-Server-tip</link>
				<description>
				
				Have you ever wanted to quickly migrate selected table data back and fourth from your dev database to your live database?  If the answer is yes then this one&apos;s for you.  [More]
				</description>
				
				<category>ORACLE</category>
				
				<category>RDBMS</category>
				
				<category>SQL Server</category>
				
				<category>MySQL</category>
				
				<pubDate>Fri, 12 Feb 2010 14:39:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2010/2/12/A-quick-SQL-Server-tip</guid>
				
				
			</item>
			
			<item>
				<title>Looking for a MySQL equivalent for SQL Server&apos;s ISNULL function?</title>
				<link>http://www.cfpadawan.com/index.cfm/2009/9/21/Looking-for-a-MySQL-equivalent-for-SQL-Servers-ISNULL-function</link>
				<description>
				
				&lt;strong&gt;SQL Server&lt;/strong&gt; has a well known and widely used &lt;strong&gt;ISNULL&lt;/strong&gt; function that actually replaces a null column value or null subquery value with whatever you specify.  For example, if you were to write
&lt;code&gt;
SELECT  ISNULL(UnitPrice,0)
FROM    InventoryItem
&lt;/code&gt;

then you would have zeros returned in your result set for all InventoryItem table records that had a NULL value for the UnitPrice field.  Ever tried to do that in &lt;strong&gt;MySQL&lt;/strong&gt;?  It doesn&apos;t work because MySQL&apos;s ISNULL function simply returns a value telling you whether or not the argument to the ISNULL function was NULL or not.  Not as cool when compared to SQL Server&apos;s nifty replace type of functionality now is it?  But wait, no need to talk smack about MySQL - for there is another great and easy to use command in MySQL that will give us the same result!  [More]
				</description>
				
				<category>SQL Server</category>
				
				<category>ColdFusion</category>
				
				<category>MySQL</category>
				
				<pubDate>Mon, 21 Sep 2009 14:59:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2009/9/21/Looking-for-a-MySQL-equivalent-for-SQL-Servers-ISNULL-function</guid>
				
				
			</item>
			
			<item>
				<title>Date and Time formatting in MySQL</title>
				<link>http://www.cfpadawan.com/index.cfm/2009/8/29/Date-and-Time-formatting-in-MySQL</link>
				<description>
				
				Most developers familiar with &lt;b&gt;SQL Server&lt;/b&gt; have employed the easy to use &lt;b&gt;CAST&lt;/b&gt; or &lt;b&gt;CONVERT&lt;/b&gt; commands in order to properly format a date. Here&apos;s a simple example of &lt;b&gt;CONVERT&lt;/b&gt; helping us get a value in the format of MM/DD/YYYY.
&lt;code&gt;
SELECT  CONVERT(VARCHAR(10), MyDateField, 101) AS MyDateFieldDisplay
FROM    TableName
&lt;/code&gt;
This is a great command and it&apos;s very easy to use - but do you know how to format date and time values in a similar fashion when coding against a &lt;b&gt;MySQL database&lt;/b&gt;? You can use the &lt;b&gt;DATE_FORMAT&lt;/b&gt; command and here&apos;s how...  [More]
				</description>
				
				<category>SQL Server</category>
				
				<category>MySQL</category>
				
				<pubDate>Sat, 29 Aug 2009 17:47:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2009/8/29/Date-and-Time-formatting-in-MySQL</guid>
				
				
			</item>
			</channel></rss>