vote up 0 vote down star

Ok, let's say from start I'm not a SQL ninja. Anyway I'm using SQLite in a tiny project of mine. I've this test table:

CREATE TABLE [prova] 
(
    [id] INTEGER PRIMARY KEY UNIQUE,
    [str] TEXT NOT NULL
)

and this query won't work:

insert into prova (id, str)
    select null as id, "foo" as str
    where not exists (select * from prova where prova.str = "foo")

why this??? I need to do conditional inserts and I'm seeking a way to make them faster

flag

74% accept rate
What does it mean "won't work"? Do you get an error message? – Lasse V. Karlsen Oct 31 at 12:51
works for me! what is the exact error you are getting ? – ennuikiller Oct 31 at 12:52

3 Answers

vote up 2 vote down check

Actually, it does work ... Look at this sqlite3 session I just did, the final select only returns 1 row ...

tnt@lain ~ $ sqlite3 test.sqlite3
SQLite version 3.6.17
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> CREATE TABLE prova
   ...> (
   ...>         id INTEGER PRIMARY KEY UNIQUE,
   ...>         str TEXT NOT NULL
   ...> );      
sqlite> 
sqlite> insert into prova (id, str)
   ...>         select null as id, "foo" as str
   ...>         where not exists (select * from prova where prova.str = "foo");
sqlite> insert into prova (id, str)
   ...>         select null as id, "foo" as str
   ...>         where not exists (select * from prova where prova.str = "foo");
sqlite> insert into prova (id, str)
   ...>         select null as id, "foo" as str
   ...>         where not exists (select * from prova where prova.str = "foo");
sqlite> select * from prova;
1|foo
sqlite>
link|flag
yes, its works like a charm! – ennuikiller Oct 31 at 12:54
then i've some problem with my sqllite tool... i guess – gotch4 Oct 31 at 14:30
vote up 0 vote down

I don't know SQLite, but in standard sql I don't think any where clause is valid for an insert statement

link|flag
2  
The where clause is part of the select, not the insert. – dreamlax Oct 31 at 12:56
vote up 0 vote down

Are you just using this to create your database ? Because what i usually do is using MySQL to create the databases and then export them in my sqlite db. It's much easier and you can use "real sql" But if you have to insert in sqlite in-app that is not a good option and i can not help you then.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.