On 26 Oct 2012, at 10:28pm, Elefterios Stamatogiannakis <est...@gmail.com> wrote:
> create table t as > select upper(c1), c2, lower(c3) from > ( > select * from file('http://www.foo.com/list1.tsv.gz') > union all > select * from file('http://www.foo.com/list2.tsv.gz') > ) > where c2!=c4; Does this work instead ? CREATE TABLE t ([[whatever columns you want]]); INSERT INTO t SELECT upper(c1),c2,lower(c3) FROM file('http://www.foo.com/list1.tsv.gz') WHERE c2!=c4; INSERT INTO t SELECT upper(c1),c2,lower(c3) FROM file('http://www.foo.com/list2.tsv.gz') WHERE c2!=c4; Simon. _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users