<?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/"
	>

<channel>
	<title>Tech-Recipes&#187; MySQL</title>
	<atom:link href="http://www.tech-recipes.com/category/database/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Sat, 21 Nov 2009 03:54:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Import CSV file directly into MySQL</title>
		<link>http://www.tech-recipes.com/rx/2345/import_csv_file_directly_into_mysql/</link>
		<comments>http://www.tech-recipes.com/rx/2345/import_csv_file_directly_into_mysql/#comments</comments>
		<pubDate>Tue, 08 May 2007 09:02:38 +0000</pubDate>
		<dc:creator>katy8439</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Instead of writing a script to pull in information from a CSV file, you can link MYSQL directly to it and upload the information using the following SQL syntax.
(...)Read the rest of Import CSV file directly into MySQL 

© katy8439 for Tech-Recipes, 2007. &#124;
Permalink &#124;
25 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/2345/import_csv_file_directly_into_mysql/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>MySQL: Increment an exisitng value</title>
		<link>http://www.tech-recipes.com/rx/2139/mysql_increment_an_exisitng_value/</link>
		<comments>http://www.tech-recipes.com/rx/2139/mysql_increment_an_exisitng_value/#comments</comments>
		<pubDate>Sat, 24 Feb 2007 12:20:22 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[This slick MySQL syntax allows you to increment or decrement an existing number in a table without first having to read the value. This is a nice way to increment an access counter. 
(...)Read the rest of MySQL: Increment an exisitng value 

© qmchenry for Tech-Recipes, 2007. &#124;
Permalink &#124;
6 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/2139/mysql_increment_an_exisitng_value/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>MySQL: Use CONCAT to include text in SELECT results</title>
		<link>http://www.tech-recipes.com/rx/2059/mysql_use_concat_to_include_text_in_select_results/</link>
		<comments>http://www.tech-recipes.com/rx/2059/mysql_use_concat_to_include_text_in_select_results/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 13:03:09 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[The CONCAT function in MySQL allows SELECT statements to act like printf commands by mingling text and query results together.
(...)Read the rest of MySQL: Use CONCAT to include text in SELECT results 

© qmchenry for Tech-Recipes, 2007. &#124;
Permalink &#124;
3 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/2059/mysql_use_concat_to_include_text_in_select_results/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Copy an existing MySQL table to a new table</title>
		<link>http://www.tech-recipes.com/rx/1487/copy-an-existing-mysql-table-to-a-new-table/</link>
		<comments>http://www.tech-recipes.com/rx/1487/copy-an-existing-mysql-table-to-a-new-table/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 13:09:33 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[This is a great set of two commands that allow the creation and population of a new table with the structure and data of an existing table.  This provides a quick means of making a point-in-time copy of a table and is a safe, easy way to make a quick copy of a table [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1487/copy-an-existing-mysql-table-to-a-new-table/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Rename or change name of MySQL table</title>
		<link>http://www.tech-recipes.com/rx/1486/rename-or-change-name-of-mysql-table/</link>
		<comments>http://www.tech-recipes.com/rx/1486/rename-or-change-name-of-mysql-table/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 12:35:15 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[If you change your mind and want to rename an existing MySQL table, with or without data in it, it is no problem.  One simple command will change the table&#8217;s name.
(...)Read the rest of Rename or change name of MySQL table 

© qmchenry for Tech-Recipes, 2006. &#124;
Permalink &#124;
14 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1486/rename-or-change-name-of-mysql-table/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Ignore duplicate entries in MySQL select using DISTINCT keyword</title>
		<link>http://www.tech-recipes.com/rx/1481/ignore-duplicate-entries-in-mysql-select-using-distinct-keyword/</link>
		<comments>http://www.tech-recipes.com/rx/1481/ignore-duplicate-entries-in-mysql-select-using-distinct-keyword/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 18:34:19 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Sometimes every occurance of a value which may be duplicated multiple times in a result set is not needed.  For example, if making a pulldown menu list of options, each option should be seen only once.  The DISTINCT keyword in a select statement eliminates duplication in the result set.
(...)Read the rest of Ignore [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1481/ignore-duplicate-entries-in-mysql-select-using-distinct-keyword/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Save MySQL query results into a text or CSV file</title>
		<link>http://www.tech-recipes.com/rx/1475/save-mysql-query-results-into-a-text-or-csv-file/</link>
		<comments>http://www.tech-recipes.com/rx/1475/save-mysql-query-results-into-a-text-or-csv-file/#comments</comments>
		<pubDate>Wed, 28 Jun 2006 17:43:47 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[MySQL provides an easy mechanism for writing the results of a select statement into a text file on the server.  Using extended options of the INTO OUTFILE nomenclature, it is possible to create a comma separated value (CSV) which can be imported into a spreadsheet application such as OpenOffice or Excel or any other [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1475/save-mysql-query-results-into-a-text-or-csv-file/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Get MySQL date in RFC-822 format for RSS feeds</title>
		<link>http://www.tech-recipes.com/rx/1461/get-mysql-date-in-rfc-822-format-for-rss-feeds/</link>
		<comments>http://www.tech-recipes.com/rx/1461/get-mysql-date-in-rfc-822-format-for-rss-feeds/#comments</comments>
		<pubDate>Mon, 19 Jun 2006 15:12:50 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[To get the PubDate element of an RSS feed to validate, it needs to be in RFC-822 format.  MySQL has flexible ways of working with dates and times which make this a simple task.  
(...)Read the rest of Get MySQL date in RFC-822 format for RSS feeds 

© qmchenry for Tech-Recipes, 2006. &#124;
Permalink [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1461/get-mysql-date-in-rfc-822-format-for-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Show or list tables in a MySQL database</title>
		<link>http://www.tech-recipes.com/rx/836/show-or-list-tables-in-a-mysql-database/</link>
		<comments>http://www.tech-recipes.com/rx/836/show-or-list-tables-in-a-mysql-database/#comments</comments>
		<pubDate>Tue, 22 Feb 2005 14:41:34 +0000</pubDate>
		<dc:creator>webgod</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Once you have selected a database, you can list the tables in it by using the show command.

(...)Read the rest of Show or list tables in a MySQL database 

© webgod for Tech-Recipes, 2005. &#124;
Permalink &#124;
4 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/836/show-or-list-tables-in-a-mysql-database/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MySQL dump import -&gt; Error 1217</title>
		<link>http://www.tech-recipes.com/rx/797/mysql-dump-import-error-1217/</link>
		<comments>http://www.tech-recipes.com/rx/797/mysql-dump-import-error-1217/#comments</comments>
		<pubDate>Mon, 20 Dec 2004 10:18:30 +0000</pubDate>
		<dc:creator>dionak</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[When using innodb tables and foreign key constraints, importing a mysqldump can sometimes generate foreign key errors. 
(...)Read the rest of MySQL dump import -> Error 1217 

© dionak for Tech-Recipes, 2004. &#124;
Permalink &#124;
1 comment &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/797/mysql-dump-import-error-1217/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
