MySQL and SQLite differences in SQL - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T11:06:07Zhttp://stackoverflow.com/feeds/question/751160http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/751160/mysql-and-sqlite-differences-in-sql0MySQL and SQLite differences in SQLDarth2009-04-15T11:00:52Z2009-04-15T11:17:52Z
<p>I'm writing java application that is using both <strong>SQLite</strong> and <strong>MySQL</strong> using <strong>JDBC.</strong></p>
<p>Are there any differences in <strong>SQL</strong> for those databases? Can I use same queries for both <strong>SQLite</strong> and <strong>MySQL</strong>, or is there any db specific stuff, that doesn't work on the other one?</p>
<p>As far I've worked only with <strong>MySQL</strong>, so I don't really know much about <strong>SQLite</strong>.</p>
http://stackoverflow.com/questions/751160/mysql-and-sqlite-differences-in-sql/751226#7512261Answer by vartec for MySQL and SQLite differences in SQLvartec2009-04-15T11:17:52Z2009-04-15T11:17:52Z<p>If you stick to <a href="http://en.wikipedia.org/wiki/SQL-92" rel="nofollow">ANSI SQL92</a>, you'll should be fine. </p>
<p>There are some SQL92 features missing from both MySQL and SQLite (e.g. FULL OUTER JOIN).
MySQL has both RIGHT JOIN, and LEFT JOIN, SQLite only the LEFT JOIN. SQLite doesn't support FOREIGN KEY constraints, neither does MySQL with MyISAM tables.
SQLite of course doesn't have GRANT/REVOKE, as permission system is based on underlying OS's file permissions.</p>