<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>me looking so small in this world &#187; mysql</title>
	<atom:link href="http://rudyegenias.wordpress.com/category/technology/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://rudyegenias.wordpress.com</link>
	<description>my way to the it world, search engine optimization, linux, php, tech, unix, tutorials, xampp, notes</description>
	<lastBuildDate>Wed, 16 Dec 2009 00:42:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='rudyegenias.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/6347d051db7099bdcb328ee218971f7c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>me looking so small in this world &#187; mysql</title>
		<link>http://rudyegenias.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rudyegenias.wordpress.com/osd.xml" title="me looking so small in this world" />
		<item>
		<title>altering mysql column definition</title>
		<link>http://rudyegenias.wordpress.com/2007/05/20/altering-mysql-column-definition/</link>
		<comments>http://rudyegenias.wordpress.com/2007/05/20/altering-mysql-column-definition/#comments</comments>
		<pubDate>Sun, 20 May 2007 07:26:44 +0000</pubDate>
		<dc:creator>rudyegenias</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://rudyegenias.wordpress.com/2007/05/20/altering-mysql-column-definition/</guid>
		<description><![CDATA[Have set my database and it was the perfect database I have ever designed(perhaps) but how about trying to edit the columns?
Here is the code:
alter table account modify `id` int(11) NOT NULL AUTO_INCREMENT; 
Note: the id column is bigint(9) before the transformation.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rudyegenias.wordpress.com&blog=300508&post=113&subd=rudyegenias&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://rudyegenias.wordpress.com/2007/05/20/altering-mysql-column-definition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51c0bf52d5464b10984efef52f877d1b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rudyegenias</media:title>
		</media:content>
	</item>
		<item>
		<title>resetting the auto_increment field in mysql</title>
		<link>http://rudyegenias.wordpress.com/2007/05/20/resetting-the-auto_increment-field-in-mysql/</link>
		<comments>http://rudyegenias.wordpress.com/2007/05/20/resetting-the-auto_increment-field-in-mysql/#comments</comments>
		<pubDate>Sun, 20 May 2007 05:38:31 +0000</pubDate>
		<dc:creator>rudyegenias</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://rudyegenias.wordpress.com/2007/05/20/resetting-the-auto_increment-field-in-mysql/</guid>
		<description><![CDATA[Oftentimes one needs to test web application to see if it works. But during those times one doesn&#8217;t have to retain all of the test data and after you delete the test data the auto_increment field(mostly id&#8217;s) don&#8217;t reset itself.
Here is a way to reset the auto_increment column in your mysql database:
alter table account auto_increment=4;
Guessing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rudyegenias.wordpress.com&blog=300508&post=111&subd=rudyegenias&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://rudyegenias.wordpress.com/2007/05/20/resetting-the-auto_increment-field-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51c0bf52d5464b10984efef52f877d1b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rudyegenias</media:title>
		</media:content>
	</item>
		<item>
		<title>find the next auto_increment  number in mysql</title>
		<link>http://rudyegenias.wordpress.com/2007/05/20/find-the-next-auto_increment-number-in-mysql/</link>
		<comments>http://rudyegenias.wordpress.com/2007/05/20/find-the-next-auto_increment-number-in-mysql/#comments</comments>
		<pubDate>Sun, 20 May 2007 05:34:35 +0000</pubDate>
		<dc:creator>rudyegenias</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://rudyegenias.wordpress.com/2007/05/20/find-the-next-auto_increment-number-in-mysql/</guid>
		<description><![CDATA[Finding the next auto_increment is easy on phpmyadmin. Just select your database from the left side dropdown box. Then select the table on the lower part of it. Then click structure.
But what if it&#8217;s in mysql? or in PHP?In PHP:

&#60;?$tablename &#160;&#160;&#160; &#160;&#160;&#160; = &#8220;tablename&#8221;;$next_increment &#160;&#160;&#160; = 0;$qShowStatus &#160;&#160;&#160; &#160;&#160;&#160; = &#8220;SHOW TABLE STATUS LIKE &#8216;$tablename&#8217;&#8221;;$qShowStatusResult [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rudyegenias.wordpress.com&blog=300508&post=110&subd=rudyegenias&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://rudyegenias.wordpress.com/2007/05/20/find-the-next-auto_increment-number-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51c0bf52d5464b10984efef52f877d1b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rudyegenias</media:title>
		</media:content>
	</item>
		<item>
		<title>rearrange columns in mysql</title>
		<link>http://rudyegenias.wordpress.com/2006/12/21/rearrange-columns-in-mysql/</link>
		<comments>http://rudyegenias.wordpress.com/2006/12/21/rearrange-columns-in-mysql/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 06:30:22 +0000</pubDate>
		<dc:creator>rudyegenias</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://rudyegenias.wordpress.com/2006/12/21/rearrange-columns-in-mysql/</guid>
		<description><![CDATA[Suppose I have a table with:
id int(11) auto_increment,
date datetime,
created_at datetime
and want&#8217;s to have this arrangement:
id int(11) auto_increment,
created_at datetim,
date datetime
This will be the command to do just that.
ALTER table test.date MODIFY COLUMN created_at date AFTER id
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rudyegenias.wordpress.com&blog=300508&post=93&subd=rudyegenias&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://rudyegenias.wordpress.com/2006/12/21/rearrange-columns-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51c0bf52d5464b10984efef52f877d1b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rudyegenias</media:title>
		</media:content>
	</item>
	</channel>
</rss>