<?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>The Developer&#039;s Info &#187; SQL</title>
	<atom:link href="http://thedevelopersinfo.com/category/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://thedevelopersinfo.com/</link>
	<description>Resource which helps to developers to learn and use new technologies and application frameworks.</description>
	<lastBuildDate>Sun, 21 Aug 2011 09:30:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Setting character sets for database in MySQL</title>
		<link>http://thedevelopersinfo.com//2010/03/24/setting-character-sets-for-database-in-mysql/</link>
		<comments>http://thedevelopersinfo.com//2010/03/24/setting-character-sets-for-database-in-mysql/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 18:05:38 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Creating and populating the database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1534</guid>
		<description><![CDATA[<p>MySQL can store data using various character sets. To view the supported character sets in your server run</p> mysql> show character set; <p>MySQL allows to set which character set need to use for database</p> create database some_db character set cp1250; <p>and for column</p> varchar(20) character set cp1250 <p>No related posts.</p>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/03/24/setting-character-sets-for-database-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoiding problems with Date format in MySQL</title>
		<link>http://thedevelopersinfo.com//2010/03/24/avoiding-problems-with-date-format-in-mysql/</link>
		<comments>http://thedevelopersinfo.com//2010/03/24/avoiding-problems-with-date-format-in-mysql/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:43:09 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Creating and populating the database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1531</guid>
		<description><![CDATA[<p>If you construct a string with which to populate a date column and that string does not match the expected format, you will receive error. In this case MySQL has function str_to_date which specifies string format</p> mysql> update ... set birth_data = str_to_date('FEB-12-1990', '%b-%d-%Y') where ... <p>Formatters:</p> %a &#8211; the short weekday name: Sun, Mon,&#8230; <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/03/24/avoiding-problems-with-date-format-in-mysql/">Avoiding problems with Date format in MySQL</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/03/24/avoiding-problems-with-date-format-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting query result in XML in MySQL</title>
		<link>http://thedevelopersinfo.com//2010/03/24/getting-query-result-in-xml-in-mysql/</link>
		<comments>http://thedevelopersinfo.com//2010/03/24/getting-query-result-in-xml-in-mysql/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:15:17 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Creating and populating the database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1527</guid>
		<description><![CDATA[<p>MySQL allows to generate XML output from query. It is very useful when you are working with XML data</p> mysql -u user_name -p --xml database_name <p>After that you can select data and result will be as an XML document.</p> <p>No related posts.</p>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/03/24/getting-query-result-in-xml-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating and using databases in MySQL</title>
		<link>http://thedevelopersinfo.com//2010/03/24/creating-and-using-databases-in-mysql/</link>
		<comments>http://thedevelopersinfo.com//2010/03/24/creating-and-using-databases-in-mysql/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:05:44 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Creating and populating the database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1503</guid>
		<description><![CDATA[<p>In this post I am going to show simple examples which should help to understand how to create database, table, how to populate, update data in table and how to delete data from table and how to delete database. I will use MySQL database server which you can download from mysql.com. If you installed MySQL <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/03/24/creating-and-using-databases-in-mysql/">Creating and using databases in MySQL</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/03/24/creating-and-using-databases-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.343 seconds -->

