> IN only works on a single column. The closest you can get to this is
> something like
>
> SELECT map.*
> FROM map join (
>     select 1 x, 1 y
>     union all
>     select 1 x, 2 y
>     union all
>     select 1 x, 3 y) t
> ON map.x = t.x AND map.y=t.y;

Thanks. I will use more than 3 keys, so I will create temporary memory
table with keys for this stuff.

-- 
Alexander Batyrshin aka bash
bash = Biomechanica Artificial Sabotage Humanoid
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to