<?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>Programming Facts &#187; MYSQL</title>
	<atom:link href="http://www.programmingfacts.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.programmingfacts.com</link>
	<description></description>
	<lastBuildDate>Sun, 01 Jan 2012 04:21:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Clustered indexes Vs Non-clustered indexes</title>
		<link>http://www.programmingfacts.com/clustered-indexes-non-clustered/</link>
		<comments>http://www.programmingfacts.com/clustered-indexes-non-clustered/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 08:23:11 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Clustered Non-clustered indexes]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=951</guid>
		<description><![CDATA[A clustered index is a special type of index that reorders the records in the table are physically stored. In non-technical way, you are telling the database to store close values to one another on the disk. This means, a table can have only one clustered index. This has the benefit of rapid scan / retrieval of records on any operation with clustered index values.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/clustered-indexes-non-clustered/' addthis:title='Clustered indexes Vs Non-clustered indexes' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/clustered-indexes-non-clustered/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Difference Between Primary Key and Unique Key</title>
		<link>http://www.programmingfacts.com/difference-primary-key-unique/</link>
		<comments>http://www.programmingfacts.com/difference-primary-key-unique/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 09:08:22 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Primary Key Vs Unique Key]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=937</guid>
		<description><![CDATA[Everybody knows about difference between Primary key and Unique key who is/was working with SQL. This is silly question but still in lots of interview, interviewer asking this question starting from Fresher post to Experience post. This is a basic question and you must be aware with all the differences. You may know the difference but may be not know all.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/difference-primary-key-unique/' addthis:title='Difference Between Primary Key and Unique Key' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/difference-primary-key-unique/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Multiple MYSQL Database Connection in PHP</title>
		<link>http://www.programmingfacts.com/multiple-mysql-database-connection/</link>
		<comments>http://www.programmingfacts.com/multiple-mysql-database-connection/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 12:44:09 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Multiple MYSQL]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=929</guid>
		<description><![CDATA[Do you want to make a MYSQL connection with multiple database in PHP? I am working on project where i need to use two database. I prefer not to make separate MYSQL connection for two database if both database is on same server and accessible by same user. You can simply use the database name before table name. Look at below code.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/multiple-mysql-database-connection/' addthis:title='Multiple MYSQL Database Connection in PHP' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/multiple-mysql-database-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple MYSQL Database Connection with Zend Framework</title>
		<link>http://www.programmingfacts.com/multiple-mysql-database-connection-zend/</link>
		<comments>http://www.programmingfacts.com/multiple-mysql-database-connection-zend/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 09:40:55 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Multiple MYSQL DB with Zend]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=916</guid>
		<description><![CDATA[Do you want to make a connection with multiple database in Zend Framework? Today i worked on multiple MYSQL database connection in Zend Framework as my client wants separate database to reduce the load of site. Its very easy to manage multiple database connection with ZF. You just need to add below code in bootstrap.php file and use the db object accordingly.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/multiple-mysql-database-connection-zend/' addthis:title='Multiple MYSQL Database Connection with Zend Framework' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/multiple-mysql-database-connection-zend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find a Lat/Long with in x miles/kilometer Radius</title>
		<link>http://www.programmingfacts.com/find-lat-long-miles-kilometer-radius/</link>
		<comments>http://www.programmingfacts.com/find-lat-long-miles-kilometer-radius/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 07:34:52 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[Helpful Tips and Tricks]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Latitude Longitude Miles Radius]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=912</guid>
		<description><![CDATA[You are at the right place if you are looking for solution to get or check latitude and longitude is with in x miles of radius with given latitude and longitude. This is very easy with a single equation. Get all lat/long list from database if current lat/long is with in x miles of radius.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/find-lat-long-miles-kilometer-radius/' addthis:title='Find a Lat/Long with in x miles/kilometer Radius' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/find-lat-long-miles-kilometer-radius/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MYSQL Split/Explode function</title>
		<link>http://www.programmingfacts.com/mysql-split-explode-function/</link>
		<comments>http://www.programmingfacts.com/mysql-split-explode-function/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 12:10:00 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[MYSQL Split Explode]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=907</guid>
		<description><![CDATA[Do you know any MYSQL split function or Explode function ? I guess no, as MYSQL does not have any function for split string or explode string. Today i need to explode one of my database field which contains latitude and longitude.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/mysql-split-explode-function/' addthis:title='MYSQL Split/Explode function' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/mysql-split-explode-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Search MySql records Group By Year from DateTime</title>
		<link>http://www.programmingfacts.com/search-mysql-records-group-by-year-from-datetime/</link>
		<comments>http://www.programmingfacts.com/search-mysql-records-group-by-year-from-datetime/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 08:11:19 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[MYSQL GROUP BY YEAR]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=888</guid>
		<description><![CDATA[I am working with Mobile Ad networking site for one of my client and i wanted to get the yearly records from datetime field. Actually i am transferring hourly data in to different table to reduce load time of reporting page. For this, i need to combine records by yearly from date or datetime field<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/search-mysql-records-group-by-year-from-datetime/' addthis:title='Search MySql records Group By Year from DateTime' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/search-mysql-records-group-by-year-from-datetime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search MySql records Group By Month from DateTime</title>
		<link>http://www.programmingfacts.com/search-mysql-records-group-by-month-from-datetime/</link>
		<comments>http://www.programmingfacts.com/search-mysql-records-group-by-month-from-datetime/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 06:15:15 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[MYSQL GROUP BY MONTH]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=876</guid>
		<description><![CDATA[I am working with Mobile Ad networking site for one of my client and i wanted to get the monthly records from datetime field. Actually i am transferring hourly data in to different table to reduce load time of reporting page. For this, i need to find the monthly record from date or datetime field.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/search-mysql-records-group-by-month-from-datetime/' addthis:title='Search MySql records Group By Month from DateTime' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/search-mysql-records-group-by-month-from-datetime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Next and previous mysql records relative to current page</title>
		<link>http://www.programmingfacts.com/find-next-and-previous-mysql-records-relative-to-current-page/</link>
		<comments>http://www.programmingfacts.com/find-next-and-previous-mysql-records-relative-to-current-page/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 18:45:57 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Next Previous ID from MYSQL]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=872</guid>
		<description><![CDATA[I have photo details page and i need to put next photo and previous photo link. To achieve this, i need to get previous record and next records relative to index or current photo record from mysql photo table. Generally we assume that it can be achieve by add one in current record's auto increment id and minus one in current record's auto increment id. But this is not the correct way to get next and previous record..<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/find-next-and-previous-mysql-records-relative-to-current-page/' addthis:title='Find Next and previous mysql records relative to current page' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/find-next-and-previous-mysql-records-relative-to-current-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Difference between IN and FIND_IN_SET</title>
		<link>http://www.programmingfacts.com/difference-between-in-and-find_in_set/</link>
		<comments>http://www.programmingfacts.com/difference-between-in-and-find_in_set/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 08:33:31 +0000</pubDate>
		<dc:creator>Rakshit Patel</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Mysql IN and FIND_IN_SET]]></category>

		<guid isPermaLink="false">http://www.programmingfacts.com/?p=866</guid>
		<description><![CDATA[You may be confused with IN() and FIND_IN_SET() MYSQL functions. There are specific case/situation for both functions where to use which Mysql function. IN() function is used when you have a list of possible values and a single value in your database.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.programmingfacts.com/difference-between-in-and-find_in_set/' addthis:title='Difference between IN and FIND_IN_SET' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_googlebuzz"></a><a class="addthis_button_digg"></a><a class="addthis_button_stumbleupon"></a><a class="addthis_button_delicious"></a><a class="addthis_button_myspace"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_reddit"></a></div>]]></description>
		<wfw:commentRss>http://www.programmingfacts.com/difference-between-in-and-find_in_set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (User agent is rejected)
Database Caching 39/49 queries in 0.110 seconds using disk

Served from: www.programmingfacts.com @ 2012-02-05 13:04:38 -->
