Estoy intentando portar esta línea de MS SQL Server a SQLite
IF NOT EXISTS(SELECT 1 FROM EVENTTYPE WHERE EventTypeName = 'ANI Received')
INSERT INTO EVENTTYPE (EventTypeName) VALUES ('ANI Received');
Parece que SQLite no es compatible con SI NO EXISTE o al menos no puedo hacer que funcione. ¿Me estoy perdiendo algo simple? ¿Existe alguna solución?