<?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>imranul hoque&#039;s blog &#187; Mysql</title>
	<atom:link href="http://www.imranulhoque.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imranulhoque.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 04:12:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mysql function to soundex match a word in a multi word string</title>
		<link>http://www.imranulhoque.com/mysql/mysql-function-soundex-match-multi-word-string/</link>
		<comments>http://www.imranulhoque.com/mysql/mysql-function-soundex-match-multi-word-string/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 19:18:34 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[multi-word search]]></category>
		<category><![CDATA[mysql function]]></category>
		<category><![CDATA[soundex]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=175</guid>
		<description><![CDATA[soundex is a very useful mysql function when we try to compare 2 words if they sounds similar. Here is the official manual for the function. Soundex is pretty easy to use when we are comparing 2 words. For example, check the following query:
 select if(soundex('Rösle')= soundex('rosle'), 1, 0); 
It&#8217;ll return 1 as both the [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/mysql/mysql-function-soundex-match-multi-word-string/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mysql rounding for currency format</title>
		<link>http://www.imranulhoque.com/mysql/mysql-rounding-for-currency-format/</link>
		<comments>http://www.imranulhoque.com/mysql/mysql-rounding-for-currency-format/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 10:16:51 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[mysql rounding]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=138</guid>
		<description><![CDATA[Most of the time we are used to format float numbers into currency format by PHP (or any front end language) using functions like fprintf(). If we could grab the result formatted from the db, we won&#8217;t need to use front end formatting. Mysql function format() is the function we need.
Lets say we have a [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/mysql/mysql-rounding-for-currency-format/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Build dropdown from Mysql SET or ENUM fields</title>
		<link>http://www.imranulhoque.com/mysql/build-dropdown-from-mysql-set-or-enum-fields/</link>
		<comments>http://www.imranulhoque.com/mysql/build-dropdown-from-mysql-set-or-enum-fields/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 21:28:31 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Mysql Enum dropdown]]></category>
		<category><![CDATA[Mysql Set dropdown]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=131</guid>
		<description><![CDATA[We need to populate dropdown fields from Mysql SET or ENUM fields pretty often. So here is how I use to do it.
Lets say &#8216;test&#8217; is a table that has a field, &#8216;agree&#8217; of type &#8216;SET&#8217; having values &#8216;Yes&#8217; and &#8216;No&#8217;. On the front end of my application I want to show a dropdown/select field [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/mysql/build-dropdown-from-mysql-set-or-enum-fields/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mysql function to find distance between two places using lat/long</title>
		<link>http://www.imranulhoque.com/mysql/mysql-function-to-find-distance-between-two-places-using-latlong/</link>
		<comments>http://www.imranulhoque.com/mysql/mysql-function-to-find-distance-between-two-places-using-latlong/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 18:52:33 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Google Map]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[mysql distance calculation]]></category>
		<category><![CDATA[mysql function]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=89</guid>
		<description><![CDATA[Sometimes we need to find out list of places that are within a certain radius from a center place where coordinates of the places are saved in the database. Now we have 2 solutions for this &#8211; either loop through all the places find the distance from the center point and keep the places that [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/mysql/mysql-function-to-find-distance-between-two-places-using-latlong/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Find duplicate entry in table</title>
		<link>http://www.imranulhoque.com/mysql/find-duplicate-entry-in-table/</link>
		<comments>http://www.imranulhoque.com/mysql/find-duplicate-entry-in-table/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 07:56:44 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[duplicate entries]]></category>
		<category><![CDATA[duplicate table entries]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=15</guid>
		<description><![CDATA[This is a very handy query all the db programmers and db admins need everyday.
Lets say, we have a table "test" with 2 fields "id" and "name".
We need to find out which names are duplicated in the table. So here is the query:
select name, count(*) from test group by name having count(*) &#62; 1;
This will [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/mysql/find-duplicate-entry-in-table/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

