<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Tech-Recipes - Latest Comments in Add a column to an existing MySQL table</title><link>http://tech-recipes.disqus.com/</link><description>Cookbook of Tech Tutorials</description><atom:link href="https://tech-recipes.disqus.com/add_a_column_to_an_existing_mysql_table_mysql_tech_recipes/latest.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Tue, 05 Jul 2011 05:42:51 -0000</lastBuildDate><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-242466630</link><description>&lt;p&gt;so easy thnks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rizwan khan</dc:creator><pubDate>Tue, 05 Jul 2011 05:42:51 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-212984115</link><description>&lt;p&gt; I agree with you,  I'm not an expert in mysql, but I'm working on a database and needed to add a new column and "before" googling I tried with it xD&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">liftari</dc:creator><pubDate>Fri, 27 May 2011 17:21:49 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-209941344</link><description>&lt;p&gt;thanks, good info. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sdfds</dc:creator><pubDate>Mon, 23 May 2011 12:15:39 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-208770547</link><description>&lt;p&gt;thanks  alot &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pamidipadudravid</dc:creator><pubDate>Sat, 21 May 2011 07:09:53 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-196813658</link><description>&lt;p&gt;thank you.. it helped me&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">supriya</dc:creator><pubDate>Wed, 04 May 2011 07:18:41 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-179894570</link><description>&lt;p&gt;Thank you, son simple yet it looks complicated in the manual!&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lara Web Works</dc:creator><pubDate>Thu, 07 Apr 2011 12:07:38 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-164717091</link><description>&lt;p&gt;Thank you for this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">TrueCoders</dc:creator><pubDate>Sat, 12 Mar 2011 10:02:37 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-162767419</link><description>&lt;p&gt;thank you&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Karan Sachdeva86</dc:creator><pubDate>Tue, 08 Mar 2011 20:58:53 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-151146987</link><description>&lt;p&gt;Um, yes there is.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Spam Banjo</dc:creator><pubDate>Fri, 18 Feb 2011 06:57:28 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-147629676</link><description>&lt;p&gt;It would be helpful to show an MYSQL example along with the SQL example&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Randy</dc:creator><pubDate>Tue, 15 Feb 2011 13:01:30 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-142508025</link><description>&lt;p&gt;ALTER TABLE `mydb`.`mytable` ADD COLUMN `col2` VARCHAR(50) AFTER  `col1`, ADD COLUMN `col3` TINYINT(1) DEFAULT '0' AFTER `col2`;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">James Saunderson</dc:creator><pubDate>Tue, 08 Feb 2011 05:44:53 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-142507244</link><description>&lt;p&gt;ALTER TABLE `mydb`.`mytable` ADD COLUMN `col2` TINYINT(1) DEFAULT '0'  AFTER `col1`&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">James Saunderson</dc:creator><pubDate>Tue, 08 Feb 2011 05:41:28 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-139266823</link><description>&lt;p&gt;Thanks alot. it was of great help&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Aliraza4167</dc:creator><pubDate>Thu, 03 Feb 2011 00:26:22 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-135489815</link><description>&lt;p&gt;THANKS&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prasath</dc:creator><pubDate>Thu, 27 Jan 2011 13:59:59 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-131910060</link><description>&lt;p&gt;How to add a column in the existing database table?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mcheche Mugune</dc:creator><pubDate>Thu, 20 Jan 2011 13:30:12 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-128132669</link><description>&lt;p&gt;thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Manu_ash0147</dc:creator><pubDate>Wed, 12 Jan 2011 06:48:00 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-128121653</link><description>&lt;p&gt;Mei k aaj ko hu...Binnu..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Binnu</dc:creator><pubDate>Wed, 12 Jan 2011 05:38:48 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-112162941</link><description>&lt;p&gt;then go&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Viji_jyotika</dc:creator><pubDate>Wed, 15 Dec 2010 06:57:11 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-98646886</link><description>&lt;p&gt;Except there is no need for it anyways, obviously.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marcus Longwell</dc:creator><pubDate>Wed, 17 Nov 2010 20:48:54 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-93898429</link><description>&lt;p&gt;Fantastic explanation&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Vtmathi@googlemail.com</dc:creator><pubDate>Thu, 04 Nov 2010 14:08:01 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-89403812</link><description>&lt;p&gt;thanks! it helped!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">erald mariano</dc:creator><pubDate>Sat, 23 Oct 2010 08:56:52 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-88546695</link><description>&lt;p&gt;Danke Schön!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fernando Silva</dc:creator><pubDate>Wed, 20 Oct 2010 12:28:54 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-84881740</link><description>&lt;p&gt;thanks for help &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">vishal</dc:creator><pubDate>Thu, 07 Oct 2010 09:57:37 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-83408927</link><description>&lt;p&gt;thank for that info.. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silent_sinner</dc:creator><pubDate>Sun, 03 Oct 2010 00:08:00 -0000</pubDate></item><item><title>Re: Add a column to an existing MySQL table</title><link>http://www.tech-recipes.com/rx/378/add-a-column-to-an-existing-mysql-table/#comment-81100249</link><description>&lt;p&gt;nice and quick to the point. thank&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">MMAMail</dc:creator><pubDate>Mon, 27 Sep 2010 05:42:22 -0000</pubDate></item></channel></rss>