<?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/"
		>
<channel>
	<title>Comments on: MySQL Cheatsheet by Example</title>
	<atom:link href="http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/</link>
	<description>Technical Articles, Musings and Opinions from Tech-Evangelist</description>
	<lastBuildDate>Mon, 15 Mar 2010 17:54:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Free Tools For MySQL Design and Administration Ajax Help W3C Tag</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-12223</link>
		<dc:creator>Free Tools For MySQL Design and Administration Ajax Help W3C Tag</dc:creator>
		<pubDate>Thu, 10 Dec 2009 07:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-12223</guid>
		<description>[...] Tech-Evangelist: MySQL Cheat Sheet by Example [...]</description>
		<content:encoded><![CDATA[<p>[...] Tech-Evangelist: MySQL Cheat Sheet by Example [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roundup of MySQL Cheat Sheets &#38; Free Quick Reference Guides - Webmaster &#38; Web Design Tools Blog</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-11410</link>
		<dc:creator>Roundup of MySQL Cheat Sheets &#38; Free Quick Reference Guides - Webmaster &#38; Web Design Tools Blog</dc:creator>
		<pubDate>Tue, 21 Jul 2009 04:32:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-11410</guid>
		<description>[...] Tech-Evangelist : MySQL Cheatsheet by Example [...]</description>
		<content:encoded><![CDATA[<p>[...] Tech-Evangelist : MySQL Cheatsheet by Example [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TE</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-9864</link>
		<dc:creator>TE</dc:creator>
		<pubDate>Sun, 14 Sep 2008 16:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-9864</guid>
		<description>Hi Duce

With MySQL, you use the LIMIT clause. You have to set the values for LIMIT in order to page through a recordset of results. There is an example on page 2 of the cheat sheet. 

LIMIT 0, 10 &lt;-- returns the first 10 rows, starting with row #0
LIMIT 9, 10 &lt;-- returns the next 10 rows, starting with row #9

You are not paging through a record; you are paging through a recordset of multiple rows that are returned as query results.

The LIMIT clasue is commonly used to page through results from a SELECT query. I&#039;ll include a better example in the next version and as soon as I find the time I will write a tutorial about paging through results with MySQL. Keep checking back. I will move the tutorial up to the top of my long list of tutorials that have not yet been written. :D</description>
		<content:encoded><![CDATA[<p>Hi Duce</p>
<p>With MySQL, you use the LIMIT clause. You have to set the values for LIMIT in order to page through a recordset of results. There is an example on page 2 of the cheat sheet. </p>
<p>LIMIT 0, 10 < &#8211; returns the first 10 rows, starting with row #0<br />
LIMIT 9, 10 <&#8211; returns the next 10 rows, starting with row #9</p>
<p>You are not paging through a record; you are paging through a recordset of multiple rows that are returned as query results.</p>
<p>The LIMIT clasue is commonly used to page through results from a SELECT query. I&#8217;ll include a better example in the next version and as soon as I find the time I will write a tutorial about paging through results with MySQL. Keep checking back. I will move the tutorial up to the top of my long list of tutorials that have not yet been written. <img src='http://www.tech-evangelist.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duce</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-9863</link>
		<dc:creator>Duce</dc:creator>
		<pubDate>Sat, 13 Sep 2008 17:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-9863</guid>
		<description>Thanks for this, it is most helpful. :)

There is just one command I do not seem to get right...

To scroll inside a record... On a unix system under normal command line I would use &quot;&#124; more&quot;... How do I do this in MySQL?</description>
		<content:encoded><![CDATA[<p>Thanks for this, it is most helpful. <img src='http://www.tech-evangelist.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>There is just one command I do not seem to get right&#8230;</p>
<p>To scroll inside a record&#8230; On a unix system under normal command line I would use &#8220;| more&#8221;&#8230; How do I do this in MySQL?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doogie</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-9827</link>
		<dc:creator>Doogie</dc:creator>
		<pubDate>Mon, 01 Sep 2008 21:45:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-9827</guid>
		<description>Version 1.1 of the MySQL cheat sheet is posted. It has the additions people requested.</description>
		<content:encoded><![CDATA[<p>Version 1.1 of the MySQL cheat sheet is posted. It has the additions people requested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TE</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-7907</link>
		<dc:creator>TE</dc:creator>
		<pubDate>Thu, 26 Jun 2008 12:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-7907</guid>
		<description>Hi WFB

It will be in the next version, along with a lot of other suggestions that I have received.  The next version should be ready soon. 

Hi hotshot309

There are CSS, FileZilla and other cheat sheets in the works. All it takes it takes is the time that I don&#039;t have right now.  *sigh* :/</description>
		<content:encoded><![CDATA[<p>Hi WFB</p>
<p>It will be in the next version, along with a lot of other suggestions that I have received.  The next version should be ready soon. </p>
<p>Hi hotshot309</p>
<p>There are CSS, FileZilla and other cheat sheets in the works. All it takes it takes is the time that I don&#8217;t have right now.  *sigh* :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hotshot309</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-7883</link>
		<dc:creator>hotshot309</dc:creator>
		<pubDate>Wed, 25 Jun 2008 00:07:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-7883</guid>
		<description>Thanks a lot for the great cheatsheet!  I&#039;m a beginner and will surely benefit from it.  I&#039;ll look out for an updated version.

Any other cheatsheets you&#039;re considering adding?</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the great cheatsheet!  I&#8217;m a beginner and will surely benefit from it.  I&#8217;ll look out for an updated version.</p>
<p>Any other cheatsheets you&#8217;re considering adding?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WFB</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-7604</link>
		<dc:creator>WFB</dc:creator>
		<pubDate>Wed, 04 Jun 2008 15:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-7604</guid>
		<description>INSERT might also be included.</description>
		<content:encoded><![CDATA[<p>INSERT might also be included.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TE</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-7365</link>
		<dc:creator>TE</dc:creator>
		<pubDate>Sat, 17 May 2008 13:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-7365</guid>
		<description>Hi Jakob

After you drew attention to it, I recently run into a couple MySQL update scripts where the SET datatype was used.  I may add it to the next version of the cheat sheet, and add a separate article explaining its use for those who are curious.

Thanks for the response. :)</description>
		<content:encoded><![CDATA[<p>Hi Jakob</p>
<p>After you drew attention to it, I recently run into a couple MySQL update scripts where the SET datatype was used.  I may add it to the next version of the cheat sheet, and add a separate article explaining its use for those who are curious.</p>
<p>Thanks for the response. <img src='http://www.tech-evangelist.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jakob Egger</title>
		<link>http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/comment-page-1/#comment-7351</link>
		<dc:creator>Jakob Egger</dc:creator>
		<pubDate>Fri, 16 May 2008 19:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-evangelist.com/2007/11/23/mysql-cheatsheet/#comment-7351</guid>
		<description>a) sounds reasonable...
b) The fact that I mentioned the SET datatype is because I found your cheat sheet when I was looking for a concise overview of the MySQL Data Types. I was looking for an exhaustive list to quickly check I didn&#039;t forget any datatype that my code could have problems with.

But I agree with you, for most applications the SET datatype is not practical - especially because it effectively stores data in the CREATE TABLE statements. And that totally goes against database normalisation.

Best Regards!</description>
		<content:encoded><![CDATA[<p>a) sounds reasonable&#8230;<br />
b) The fact that I mentioned the SET datatype is because I found your cheat sheet when I was looking for a concise overview of the MySQL Data Types. I was looking for an exhaustive list to quickly check I didn&#8217;t forget any datatype that my code could have problems with.</p>
<p>But I agree with you, for most applications the SET datatype is not practical &#8211; especially because it effectively stores data in the CREATE TABLE statements. And that totally goes against database normalisation.</p>
<p>Best Regards!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
