<?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; mysql</title>
	<atom:link href="http://www.studio404.it/tag/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.studio404.it</link>
	<description>appunti di una web agency</description>
	<lastBuildDate>Sun, 02 Oct 2011 10:30:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Tutto sui Database</title>
		<link>http://www.studio404.it/2009/tutto-sui-database.html</link>
		<comments>http://www.studio404.it/2009/tutto-sui-database.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 utili per utilizzare al meglio i database SQL 25+ Alternative &#38; Open Source Database Engines 3 Jump Steps to Configure Master Slave Replication in Mysql]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/tutto-sui-database.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress. Mostrare gli articoli pubblicati tra due date</title>
		<link>http://www.studio404.it/2009/mostrare-articoli-due-date-wordpress.html</link>
		<comments>http://www.studio404.it/2009/mostrare-articoli-due-date-wordpress.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 07:27:57 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Hack WordPress]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[sviluppo]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studio404.it/?p=172</guid>
		<description><![CDATA[Per mostrare gli articoli pubblicati nel proprio blog tra due date specifiche è sufficiente aprire il file index.php (oppure a seconda delle necessità un altro file) del proprio template e trovare il Loop. Prima dell'inizio del Loop, inserire queste righe di codice. Le date ovviamente sono personalizzabili: &#60;?php $data_da = '2009-03-01'; $data_al = '2009-04-01' &#160; [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/mostrare-articoli-due-date-wordpress.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordCamp 2009, le slide degli interventi e i WordCamp locali</title>
		<link>http://www.studio404.it/2009/interventi-wordcamp-2009.html</link>
		<comments>http://www.studio404.it/2009/interventi-wordcamp-2009.html#comments</comments>
		<pubDate>Wed, 27 May 2009 21:56:43 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[italian-wordcamp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sviluppo]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://www.studio404.it/?p=198</guid>
		<description><![CDATA[Si è concluso il WordCamp 2009, che ha visto quest'anno una notevole partecipazione di persone interessate a WordPress. Ospite d'onore: Andy Peatling, il creatore di BuddyPress, la suite di plugin e temi che permette di trasformare WordPress in un social network. Tra le diverse idee lanciate durante l'evento, va segnalata sicuramente quella degli organizzatori Paolo [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/interventi-wordcamp-2009.html/feed</wfw:commentRss>
		<slash:comments>2</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>6</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>
		<item>
		<title>Gestire i database con ezSQL</title>
		<link>http://www.studio404.it/2006/gestire-database-con-ezsql.html</link>
		<comments>http://www.studio404.it/2006/gestire-database-con-ezsql.html#comments</comments>
		<pubDate>Tue, 30 May 2006 08:00:54 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[ezsql]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studio404.it/blog/?p=43</guid>
		<description><![CDATA[ezSQL è una classe PHP che semplifica parecchio le interazioni degli script PHP con diversi tipi di database, velocizzando così il lavoro di scrittura del codice. Questa classe, leggermente modificata, viene usata anche da WordPress per gestire tutte le interazioni con il database. Sul sito dello sviluppatore c'è un'ampia documentazione, con diversi esempi. Vediamo ora [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2006/gestire-database-con-ezsql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL. Sostituzione di massa di stringhe</title>
		<link>http://www.studio404.it/2005/sostituzione-di-massa.html</link>
		<comments>http://www.studio404.it/2005/sostituzione-di-massa.html#comments</comments>
		<pubDate>Sat, 10 Dec 2005 15:33:24 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.claudiosimeone.it/2005/sostituzione-di-massa.html</guid>
		<description><![CDATA[Qualche volta può capitare di dover sostituire delle stringhe (testi, cifre etc) nel nostro database mySQL. Se il database contiene centinaia di records (come spesso capita) è impensabile effettuare le sostituzioni manualmente. Possiamo però usare un semplice trucchetto, illustrato qui e che consiste in una semplice query. Ad esempio, abbiamo una tabella articoli e vogliamo [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2005/sostituzione-di-massa.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

