<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Frojas en Wordpress</title>
	<atom:link href="http://frojas.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://frojas.wordpress.com</link>
	<description>Otro blog de Paco Rojas</description>
	<lastBuildDate>Fri, 24 Apr 2009 18:27:04 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='frojas.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Frojas en Wordpress</title>
		<link>http://frojas.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://frojas.wordpress.com/osd.xml" title="Frojas en Wordpress" />
	<atom:link rel='hub' href='http://frojas.wordpress.com/?pushpress=hub'/>
		<item>
		<title>probando</title>
		<link>http://frojas.wordpress.com/2009/04/24/probando/</link>
		<comments>http://frojas.wordpress.com/2009/04/24/probando/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 18:27:04 +0000</pubDate>
		<dc:creator>frojas</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://frojas.wordpress.com/?p=7</guid>
		<description><![CDATA[En las estadísticas del blog aparecen varias entradas de gente que ha accedido al mismo buscando algo así como &#8220;select mysql quitar registros duplicados&#8220;&#8230; Entiendo que lo que buscaban era la forma de evitar que aparezcan registros (filas) repetidos al realizar en el conjunto de resultados. Así que hoy vamos a ver cómo conseguirlo. Es [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frojas.wordpress.com&amp;blog=817258&amp;post=7&amp;subd=frojas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>En las estadísticas del blog aparecen varias entradas de gente que ha accedido al mismo buscando algo así como &#8220;<span style="font-style:italic;">select mysql quitar registros duplicados</span>&#8220;&#8230; Entiendo que lo que buscaban era la forma de evitar que aparezcan registros (filas) repetidos al realizar en el conjunto de resultados. Así que hoy vamos a ver cómo conseguirlo. Es tan sencillo (cuando se conoce, claro está) como aplicar <span style="font-weight:bold;">DISTINCT</span> en la consulta.</p>
<p>Vamos a verlo con un ejemplo. Utilizaré la base de datos <a href="http://dev.mysql.com/doc/#sampledb">World</a>. Supongamos que quiero saber qué paises tienen ciudades que superen los 7.000.000 de habitantes:<br />
mysql&gt; select country.name from country INNER JOIN city ON CountryCode=Code where city.population&gt;7000000;<br />
<code>+--------------------+<br />
| name               |<br />
+--------------------+<br />
| Brazil             |<br />
| United Kingdom     |<br />
| Indonesia          |<br />
| India              |<br />
| India              |<br />
| Japan              |<br />
| China              |<br />
| China              |<br />
| South Korea        |<br />
| Mexico             |<br />
| Pakistan           |<br />
| Turkey             |<br />
| Russian Federation |<br />
| United States      |<br />
+--------------------+<br />
14 rows in set (0.00 sec)</p>
<p>mysql&gt; select DISTINCT country.name from country INNER JOIN city ON CountryCode=Code where city.population&gt;7000000;<br />
+--------------------+<br />
| name               |<br />
+--------------------+<br />
| Brazil             |<br />
| United Kingdom     |<br />
| Indonesia          |<br />
| India              |<br />
| Japan              |<br />
| China              |<br />
| South Korea        |<br />
| Mexico             |<br />
| Pakistan           |<br />
| Turkey             |<br />
| Russian Federation |<br />
| United States      |<br />
+--------------------+<br />
12 rows in set (0.00 sec)</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frojas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frojas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frojas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frojas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/frojas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/frojas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/frojas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/frojas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frojas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frojas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frojas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frojas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frojas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frojas.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frojas.wordpress.com&amp;blog=817258&amp;post=7&amp;subd=frojas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://frojas.wordpress.com/2009/04/24/probando/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bd78467f7208ee6fdf615bfa54d50408?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frojas</media:title>
		</media:content>
	</item>
		<item>
		<title>Mi primera entrada en WordPress</title>
		<link>http://frojas.wordpress.com/2007/02/25/mi-primera-entrada-en-wordpress/</link>
		<comments>http://frojas.wordpress.com/2007/02/25/mi-primera-entrada-en-wordpress/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 19:43:12 +0000</pubDate>
		<dc:creator>frojas</dc:creator>
				<category><![CDATA[Pruebas]]></category>

		<guid isPermaLink="false">http://frojas.wordpress.com/2007/02/25/mi-primera-entrada-en-wordpress/</guid>
		<description><![CDATA[Comienza mi andadura en WordPress con este post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frojas.wordpress.com&amp;blog=817258&amp;post=3&amp;subd=frojas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Comienza mi andadura en WordPress con este post.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frojas.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frojas.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frojas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frojas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frojas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frojas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/frojas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/frojas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/frojas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/frojas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frojas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frojas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frojas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frojas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frojas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frojas.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frojas.wordpress.com&amp;blog=817258&amp;post=3&amp;subd=frojas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://frojas.wordpress.com/2007/02/25/mi-primera-entrada-en-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bd78467f7208ee6fdf615bfa54d50408?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">frojas</media:title>
		</media:content>
	</item>
	</channel>
</rss>
