<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF 
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns="http://purl.org/rss/1.0/"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel rdf:about="https://linkatopia.com/rob215">
  <title>Linkatopia.com/rob215</title>
  <link>https://linkatopia.com/rob215/mysql</link>
  <description>The 25 latest links tagged, "MySQL" by Robert Giordano</description>
  <items>
    <rdf:Seq>
            <rdf:li resource="https://www.devart.com/dbforge/mysql/studio/mysql-create-index.html" />
      <rdf:li resource="https://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html" />
      <rdf:li resource="https://www.liquidweb.com/kb/mysql-performance-myisam-vs-innodb/" />
      <rdf:li resource="https://stackoverflow.blog/2021/01/14/have-the-tables-turned-on-nosql/" />
      <rdf:li resource="https://www.techrepublic.com/article/how-to-back-up-mysql-databases-from-the-command-line-with-linux/" />
      <rdf:li resource="http://stackoverflow.com/questions/6432178/how-can-i-check-if-a-mysql-table-exists-with-php" />
      <rdf:li resource="https://www.sitepoint.com/community/t/the-big-bad-thread-of-mysql-best-practices-and-other-useful-information/2716" />
      <rdf:li resource="http://www.techonthenet.com/mysql/in.php" />
      <rdf:li resource="http://stackoverflow.com/questions/60174/how-can-i-prevent-sql-injection-in-php?rq=1" />
      <rdf:li resource="https://phpdelusions.net/sql_injection" />
      <rdf:li resource="https://dev.mysql.com/doc/refman/5.5/en/upgrading-from-previous-series.html" />
      <rdf:li resource="http://dba.stackexchange.com/questions/31412/which-mysql-version-to-use-5-1-or-5-5" />
      <rdf:li resource="https://seravo.fi/2015/10-reasons-to-migrate-to-mariadb-if-still-using-mysql" />
      <rdf:li resource="https://en.wikipedia.org/wiki/NoSQL" />
      <rdf:li resource="http://20bits.com/articles/10-tips-for-optimizing-mysql-queries-that-dont-suck/" />
      <rdf:li resource="http://kevin.vanzonneveld.net/techblog/article/survive_heavy_traffic_with_your_webserver/" />
      <rdf:li resource="http://jeremy.zawodny.com/blog/archives/002194.html" />
      <rdf:li resource="http://mysqldump.azundris.com/archives/57-Annotations-to-Five-Common-PHP-database-problems.html" />
      <rdf:li resource="http://www.xaprb.com/blog/2006/08/13/four-types-of-database-abstraction-layers/" />
      <rdf:li resource="http://www.ilovejackdaniels.com/cheat-sheets/" />
      <rdf:li resource="http://www.codepoetry.net/archives/2006/03/21/optimizing_a_vps_for_getting_dugg" />
      <rdf:li resource="http://iamcal.com/publish/articles/php/search/" />
      <rdf:li resource="http://dev.mysql.com/doc/refman/4.1/en/index.html" />
      <rdf:li resource="http://www.simplemachines.org/" />
      <rdf:li resource="http://www.tutorialized.com/tutorial/Optimize-MySQL-tables-for-speed/10695" />
    </rdf:Seq>
  </items>
</channel>
  
<item rdf:about="https://www.devart.com/dbforge/mysql/studio/mysql-create-index.html">  <title>Create Index in MySQL: Types, Syntax, and Mistakes to Avoid</title>  <link>https://www.devart.com/dbforge/mysql/studio/mysql-create-index.html</link>  <dc:date>2025-09-13T18:13:37Z</dc:date>  <description>good article on using INDEXES</description></item><item rdf:about="https://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html">  <title>MySQL 5.7 Reference Manual :: 12.20.3 MySQL Handling of GROUP BY</title>  <link>https://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html</link>  <dc:date>2021-10-12T02:40:15Z</dc:date>  <description>See changes in 5.7 that affect queries with GROUP BY</description></item><item rdf:about="https://www.liquidweb.com/kb/mysql-performance-myisam-vs-innodb/">  <title>MySQL Performance: MyISAM vs InnoDB | Liquid Web</title>  <link>https://www.liquidweb.com/kb/mysql-performance-myisam-vs-innodb/</link>  <dc:date>2021-04-16T03:23:15Z</dc:date>  <description>&quot;Should I use InnoDB with WordPress, Magento or Joomla Sites? The short answer here is yes, in most cases.&quot;See the rest of this article for details</description></item><item rdf:about="https://stackoverflow.blog/2021/01/14/have-the-tables-turned-on-nosql/">  <title>Have the tables turned on NoSQL? - Stack Overflow Blog</title>  <link>https://stackoverflow.blog/2021/01/14/have-the-tables-turned-on-nosql/</link>  <dc:date>2021-01-21T14:35:06Z</dc:date>  <description>Interesting comparison</description></item><item rdf:about="https://www.techrepublic.com/article/how-to-back-up-mysql-databases-from-the-command-line-with-linux/">  <title>How to back up MySQL databases from the command line in Linux - TechRepublic</title>  <link>https://www.techrepublic.com/article/how-to-back-up-mysql-databases-from-the-command-line-with-linux/</link>  <dc:date>2018-12-28T18:31:45Z</dc:date>  <description></description></item><item rdf:about="http://stackoverflow.com/questions/6432178/how-can-i-check-if-a-mysql-table-exists-with-php">  <title>How can I check if a MySQL table exists with PHP? - Stack Overflow</title>  <link>http://stackoverflow.com/questions/6432178/how-can-i-check-if-a-mysql-table-exists-with-php</link>  <dc:date>2016-06-14T02:23:26Z</dc:date>  <description>Even though this isn&#039;t the accepted answer, it looks like the best:if(mysql_query(&quot;DESCRIBE [table]&quot;)) {</description></item><item rdf:about="https://www.sitepoint.com/community/t/the-big-bad-thread-of-mysql-best-practices-and-other-useful-information/2716">  <title>The big, bad thread of &quot;MySQL Best Practices and Other Useful Information&quot; - Dat</title>  <link>https://www.sitepoint.com/community/t/the-big-bad-thread-of-mysql-best-practices-and-other-useful-information/2716</link>  <dc:date>2016-05-11T21:48:24Z</dc:date>  <description>Good stuff in here</description></item><item rdf:about="http://www.techonthenet.com/mysql/in.php">  <title>MySQL: IN Condition</title>  <link>http://www.techonthenet.com/mysql/in.php</link>  <dc:date>2016-05-11T22:18:40Z</dc:date>  <description>WHERE some-text-column IN (&#039;aaa&#039;,&#039;bbb&#039;,&#039;ccc&#039;)WHERE some-int-column IN (1,2,3)</description></item><item rdf:about="http://stackoverflow.com/questions/60174/how-can-i-prevent-sql-injection-in-php?rq=1">  <title>mysql - How can I prevent SQL-injection in PHP? - Stack Overflow</title>  <link>http://stackoverflow.com/questions/60174/how-can-i-prevent-sql-injection-in-php?rq=1</link>  <dc:date>2016-02-21T21:20:02Z</dc:date>  <description>See two answers from user &quot;Your Common Sense&quot;</description></item><item rdf:about="https://phpdelusions.net/sql_injection">  <title>The Hitchhiker&#039;s Guide to SQL Injection prevention</title>  <link>https://phpdelusions.net/sql_injection</link>  <dc:date>2016-02-21T21:39:02Z</dc:date>  <description></description></item><item rdf:about="https://dev.mysql.com/doc/refman/5.5/en/upgrading-from-previous-series.html">  <title>MySQL :: MySQL 5.5 Reference Manual :: 2.11.1.1 Changes Affecting Upgrades to 5.</title>  <link>https://dev.mysql.com/doc/refman/5.5/en/upgrading-from-previous-series.html</link>  <dc:date>2015-12-23T00:56:39Z</dc:date>  <description>Upgrading to MySQL 5.5 from earlier versions</description></item><item rdf:about="http://dba.stackexchange.com/questions/31412/which-mysql-version-to-use-5-1-or-5-5">  <title>performance - which mysql version to use - 5.1 or 5.5? - Database Administrators</title>  <link>http://dba.stackexchange.com/questions/31412/which-mysql-version-to-use-5-1-or-5-5</link>  <dc:date>2015-12-23T01:00:14Z</dc:date>  <description></description></item><item rdf:about="https://seravo.fi/2015/10-reasons-to-migrate-to-mariadb-if-still-using-mysql">  <title>10 reasons to migrate to MariaDB (if still using MySQL) - Seravo</title>  <link>https://seravo.fi/2015/10-reasons-to-migrate-to-mariadb-if-still-using-mysql</link>  <dc:date>2015-05-20T19:59:05Z</dc:date>  <description></description></item><item rdf:about="https://en.wikipedia.org/wiki/NoSQL">  <title>NoSQL - Wikipedia, the free encyclopedia</title>  <link>https://en.wikipedia.org/wiki/NoSQL</link>  <dc:date>2013-06-05T13:31:21Z</dc:date>  <description></description></item><item rdf:about="http://20bits.com/articles/10-tips-for-optimizing-mysql-queries-that-dont-suck/">  <title>10 Tips for Optimizing MySQL Queries (That don&#039;t suck)</title>  <link>http://20bits.com/articles/10-tips-for-optimizing-mysql-queries-that-dont-suck/</link>  <dc:date>2009-09-16T18:43:56Z</dc:date>  <description>good article with some basics</description></item><item rdf:about="http://kevin.vanzonneveld.net/techblog/article/survive_heavy_traffic_with_your_webserver/">  <title>Survive heavy traffic with your webserver</title>  <link>http://kevin.vanzonneveld.net/techblog/article/survive_heavy_traffic_with_your_webserver/</link>  <dc:date>2009-09-16T19:26:07Z</dc:date>  <description>Good tips to follow for mysql optimization</description></item><item rdf:about="http://jeremy.zawodny.com/blog/archives/002194.html">  <title>Database Abstraction Layers Must Die! (by Jeremy Zawodny)</title>  <link>http://jeremy.zawodny.com/blog/archives/002194.html</link>  <dc:date>2008-04-09T02:45:27Z</dc:date>  <description>The first article I read on abstraction layers</description></item><item rdf:about="http://mysqldump.azundris.com/archives/57-Annotations-to-Five-Common-PHP-database-problems.html">  <title>Annotations to &quot;Five Common PHP database problems&quot; - MySQL-dump</title>  <link>http://mysqldump.azundris.com/archives/57-Annotations-to-Five-Common-PHP-database-problems.html</link>  <dc:date>2008-04-09T03:20:19Z</dc:date>  <description>The second article I read, somewhat related but also lists some schemas I need to read up on.</description></item><item rdf:about="http://www.xaprb.com/blog/2006/08/13/four-types-of-database-abstraction-layers/">  <title>Four types of database abstraction layers at Xaprb</title>  <link>http://www.xaprb.com/blog/2006/08/13/four-types-of-database-abstraction-layers/</link>  <dc:date>2008-04-09T03:29:09Z</dc:date>  <description>A third article with links to the other articles</description></item><item rdf:about="http://www.ilovejackdaniels.com/cheat-sheets/">  <title>Cheat Sheets - ILoveJackDaniels.com</title>  <link>http://www.ilovejackdaniels.com/cheat-sheets/</link>  <dc:date>2008-02-26T23:41:08Z</dc:date>  <description>A bunch of nice cheat sheets and quick reference charts in PDF format.</description></item><item rdf:about="http://www.codepoetry.net/archives/2006/03/21/optimizing_a_vps_for_getting_dugg">  <title>codepoetry - Optimizing a VPS for Getting Dugg</title>  <link>http://www.codepoetry.net/archives/2006/03/21/optimizing_a_vps_for_getting_dugg</link>  <dc:date>2007-05-29T01:42:03Z</dc:date>  <description>Notes on Apache and MySQL optimization.</description></item><item rdf:about="http://iamcal.com/publish/articles/php/search/">  <title>Searching with PHP and MySQL</title>  <link>http://iamcal.com/publish/articles/php/search/</link>  <dc:date>2006-11-06T22:16:17Z</dc:date>  <description></description></item><item rdf:about="http://dev.mysql.com/doc/refman/4.1/en/index.html">  <title>MySQL 3.23, 4.0, 4.1 Reference Manual</title>  <link>http://dev.mysql.com/doc/refman/4.1/en/index.html</link>  <dc:date>2006-05-05T04:21:23Z</dc:date>  <description></description></item><item rdf:about="http://www.simplemachines.org/">  <title>Simple Machines - SMF: Free PHP and MySQL forum software</title>  <link>http://www.simplemachines.org/</link>  <dc:date>2006-05-04T23:06:29Z</dc:date>  <description></description></item><item rdf:about="http://www.tutorialized.com/tutorial/Optimize-MySQL-tables-for-speed/10695">  <title>Database MySQL Optimize MySQL tables for speed Tutorial</title>  <link>http://www.tutorialized.com/tutorial/Optimize-MySQL-tables-for-speed/10695</link>  <dc:date>2006-05-03T20:03:56Z</dc:date>  <description></description></item></rdf:RDF>
