How to do IF NOT EXISTS in SQLite - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T06:24:29Zhttp://stackoverflow.com/feeds/question/531035http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/531035/how-to-do-if-not-exists-in-sqlite2How to do IF NOT EXISTS in SQLiteAngryHacker2009-02-10T04:14:48Z2009-02-14T01:01:08Z
<p>I am trying to port this line from MS SQL Server to SQLite</p>
<pre><code>IF NOT EXISTS(SELECT 1 FROM EVENTTYPE WHERE EventTypeName = 'ANI Received')
INSERT INTO EVENTTYPE (EventTypeName) VALUES ('ANI Received');
</code></pre>
<p>It seems that SQLite does not support IF NOT EXISTS or at least I can't make it work.
Am I missing something simple? Is there a workaround?</p>
http://stackoverflow.com/questions/531035/how-to-do-if-not-exists-in-sqlite/531147#5311477Answer by beach for How to do IF NOT EXISTS in SQLitebeach2009-02-10T05:30:34Z2009-02-10T05:30:34Z<p>How about this?</p>
<pre><code>INSERT OR IGNORE INTO EVENTTYPE (EventTypeName) VALUES 'ANI Received'
</code></pre>
<p>(Untested as I don't have SQLite... however <a href="http://www.sqlite.org/lang_insert.html" rel="nofollow">this link</a> is quite descriptive.)</p>
<p>Additionally, this should also work:</p>
<pre><code>INSERT INTO EVENTTYPE (EventTypeName)
SELECT 'ANI Received'
WHERE NOT EXISTS (SELECT 1 FROM EVENTTYPE WHERE EventTypeName = 'ANI Received');
</code></pre>