Christophe Leske <[EMAIL PROTECTED]> wrote:
> can someone remember me how to fill in a rtree table with values from
> another table?
>
> Something like
>
> insert into lookup (select id, x,y from othertable) -- this doesnt
> work btw

insert into lookup(idField, xField, yField)
select id, x, y from othertable;

Use actual field names in lookup table for idField, xField and yField.

Igor Tandetnik 



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to