<?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>Studio404 Web Agency &#187; query</title>
	<atom:link href="http://www.studio404.it/tag/query/feed" rel="self" type="application/rss+xml" />
	<link>http://www.studio404.it</link>
	<description>appunti di una web agency</description>
	<lastBuildDate>Mon, 17 May 2010 12:41:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>10 Essential SQL Tips for Developers</title>
		<link>http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html</link>
		<comments>http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html#comments</comments>
		<pubDate>Thu, 25 Jun 2009 08:38:05 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sicurezza]]></category>
		<category><![CDATA[sviluppo]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html</guid>
		<description><![CDATA[Dieci consigli molto utili per utilizzare al meglio i database SQL.]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Velocizzare WordPress in 11 mosse</title>
		<link>http://www.studio404.it/2009/velocizzare-wordpress.html</link>
		<comments>http://www.studio404.it/2009/velocizzare-wordpress.html#comments</comments>
		<pubDate>Mon, 11 May 2009 08:35:09 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Ajax, Javascript]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sviluppo]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.studio404.it/?p=189</guid>
		<description><![CDATA[Alcuni consigli per rendere più performante il proprio blog WordPress. 1. Aggiorna all'ultima release di WordPress WordPress 2.7.1 contiene molti miglioramenti rispetto alle versioni precedenti, rispetto alla performance. Per questa ragione, oltre ad evitare eventuali problemi di sicurezza, è fortemente consigliato l'aggiornamento all'ultima versione. 2. Elimina i plugin non usati e aggiorna quelli attivi Rimuovi [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/velocizzare-wordpress.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MySQL. Usare le espressioni regolari nelle query</title>
		<link>http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html</link>
		<comments>http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html#comments</comments>
		<pubDate>Sat, 09 May 2009 07:15:37 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[regexp]]></category>

		<guid isPermaLink="false">http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html</guid>
		<description><![CDATA[Con mySQL è possibile usare le espressioni regolari per selezionare determinati campi di testo all'interno di una tabella. SELECT * FROM articoli WHERE testo REGEXP '[^a-z]Ciao[^a-z]' ; Se si vuole fare comparazione di tipo case sensitive, è necessario usare la parola BINARY: SELECT * FROM articoli WHERE testo REGEXP BINARY '[^a-zA-Z]Ciao[^a-zA-Z]' ; Attenzione: alcuni caratteri [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MySQL. Cancellare record duplicati da una tabella</title>
		<link>http://www.studio404.it/2009/mysql-cancellare-record-duplicati-tabella.html</link>
		<comments>http://www.studio404.it/2009/mysql-cancellare-record-duplicati-tabella.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 13:59:29 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.studio404.it/2009/mysql-cancellare-record-duplicati-da-una-tabella.html</guid>
		<description><![CDATA[Per eliminare i record duplicati di una tabella, anche quando la tabella non ha un campo indice unico, si può lanciare questa query: CREATE TABLE nuova_tabella AS SELECT * FROM vecchia_tabella WHERE 1 GROUP BY &#91;COLUMN TO remove duplicates BY&#93;; DROP TABLE vecchia_tabella; RENAME TABLE nuova_tabella TO vecchia_tabella; via: Codesnippets]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/mysql-cancellare-record-duplicati-tabella.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>MySQL. Sostituire il nome di un campo</title>
		<link>http://www.studio404.it/2008/mysql-cambiare-nome-campo-tabella.html</link>
		<comments>http://www.studio404.it/2008/mysql-cambiare-nome-campo-tabella.html#comments</comments>
		<pubDate>Mon, 03 Nov 2008 08:32:13 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.studio404.it/?p=124</guid>
		<description><![CDATA[Per cambiare il nome di un campo di una tabella, in mySQL si può lanciare questa query sul database: UPDATE `tabella`SET field_name = REPLACE&#40;field_name,"vecchionome","nuovonome"&#41;; via CodeSnippets.]]></description>
		<wfw:commentRss>http://www.studio404.it/2008/mysql-cambiare-nome-campo-tabella.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
