<?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>Tutorius &#187; Database</title>
	<atom:link href="http://www.tutorius.com/category/database/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tutorius.com</link>
	<description>Tutorials &#38; Articles &#38; such as that</description>
	<lastBuildDate>Tue, 29 Jun 2010 13:06:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Selecting Field Names in MySQL</title>
		<link>http://www.tutorius.com/selecting-field-names-in-mysql</link>
		<comments>http://www.tutorius.com/selecting-field-names-in-mysql#comments</comments>
		<pubDate>Tue, 06 Oct 2009 20:34:02 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=453</guid>
		<description><![CDATA[Selecting field names in MySQL is pretty easy, though it's not quite like the SELECT syntax we're all used to: SHOW COLUMNS FROM TABLE; To select all fields that start with 'customer' we extend that a little bit, note the wild card to select all fields that start with 'customer'. SHOW COLUMNS FROM TABLE LIKE [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/selecting-field-names-in-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetting a MySQL Password</title>
		<link>http://www.tutorius.com/resetting-a-mysql-password</link>
		<comments>http://www.tutorius.com/resetting-a-mysql-password#comments</comments>
		<pubDate>Thu, 06 Aug 2009 03:13:40 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=352</guid>
		<description><![CDATA[Resetting a MySQL root password (or other password, for that matter) is easy enough if you have admin access to the server. First go to the command line (Start &#62; Run &#62; "cmd") and type "mysqladmin" &#8211; and see a bunch of output text, you're good to go. otherwise you'le need to locate mysqladmin.exe and [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/resetting-a-mysql-password/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a UNIQUE constraint to a database column</title>
		<link>http://www.tutorius.com/making-a-database-column-unique</link>
		<comments>http://www.tutorius.com/making-a-database-column-unique#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:46:12 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=292</guid>
		<description><![CDATA[Sometimes we may need to make a column unique in a database table.  For instance we can't have two employees with the same employees with the same employee number or pension plan id. To prevent this, run a query like the following to place a constraint on the attribute or attributes; ALTER TABLE Employee ADD [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/making-a-database-column-unique/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pulling database values in multiple formats</title>
		<link>http://www.tutorius.com/pulling-database-values-in-multiple-formats</link>
		<comments>http://www.tutorius.com/pulling-database-values-in-multiple-formats#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:24:57 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=285</guid>
		<description><![CDATA[When we pull a value from MySQL or another database, there's nothing stopping us from pulling the same value in different ways within the same query. For instance, say we want to pull dates in their raw format, which is suitable for sorting but may not be the most useful formatting for display.  We might find a format [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/pulling-database-values-in-multiple-formats/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import CSV file to MySQL Database using PHP</title>
		<link>http://www.tutorius.com/import-csv-file-to-mysql-database-using-php</link>
		<comments>http://www.tutorius.com/import-csv-file-to-mysql-database-using-php#comments</comments>
		<pubDate>Tue, 28 Jul 2009 13:20:25 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=262</guid>
		<description><![CDATA[&#60;!--p &#160; /** ~~~~~~~ CSV IMPORT TO DATABASE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * * This script reads in a comma delimited text file (.csv) and creates * a table in the database from it. * * The table will be emptied to start with if it is already in the database. * * Have not yet tried this [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/import-csv-file-to-mysql-database-using-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re-numbering an auto-increment column</title>
		<link>http://www.tutorius.com/re-numbering-an-auto-increment-column</link>
		<comments>http://www.tutorius.com/re-numbering-an-auto-increment-column#comments</comments>
		<pubDate>Mon, 03 Nov 2008 14:08:10 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=84</guid>
		<description><![CDATA[An auto-incremented column can become a little cluttered if records are deleted from the table, and you may wish to delete the slack of the sequence in your id column for instance doesn't bear any relationship to the number of records in the table. Before doing anything about that to a primary key, bear in [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/re-numbering-an-auto-increment-column/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time Stamp differences in MySQL and PHP</title>
		<link>http://www.tutorius.com/time-stamp-differences-in-mysql-and-php</link>
		<comments>http://www.tutorius.com/time-stamp-differences-in-mysql-and-php#comments</comments>
		<pubDate>Tue, 02 Sep 2008 12:09:45 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=44</guid>
		<description><![CDATA[MySQL and PHP handle time and data data in different ways, and it's important to be aware of the difference. Both these environments have a TIMESTAMP construct, but they're not entirely compatible. While PHP uses a UNIX timestamp format (an integer representing the number of seconds since January 1st, 1970) MySQL's TIMESTAMP data type uses [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/time-stamp-differences-in-mysql-and-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pulling a single value from the database</title>
		<link>http://www.tutorius.com/pulling-a-single-value-from-the-database</link>
		<comments>http://www.tutorius.com/pulling-a-single-value-from-the-database#comments</comments>
		<pubDate>Thu, 19 Jun 2008 00:12:28 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=15</guid>
		<description><![CDATA[Sometimes you just want to pull a single value from the database without a whole lot of work.  Here's how to do it in a single line; // mysql_result() function is used to pull a single value from the database $value = mysql_result&#40;mysql_query&#40;&#34;SELECT value FROM table WHERE condition = 'met'&#34;&#41;, 0&#41;;]]></description>
		<wfw:commentRss>http://www.tutorius.com/pulling-a-single-value-from-the-database/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Primer</title>
		<link>http://www.tutorius.com/database-primer</link>
		<comments>http://www.tutorius.com/database-primer#comments</comments>
		<pubDate>Wed, 28 Nov 2007 00:43:31 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://tutorius.com/press/?p=5</guid>
		<description><![CDATA[A database is a structured collection of information. This is not a database; Adam Thomson, 555-6335 Anita McColl, 108 Verdun Ave., 555-5249 But this is; Adam Thomson, , 555-6335 Anita McColl, 108 Verdun Ave., 555-5249 The difference? We don't have Adam's address right now, so in the second example we've left room for it. The [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/database-primer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
