On Sep 29, 2011, at 8:35 AM, guiz wrote:

> but I want t2.x sorted as '2, 6' , '3, 5', '2, 3' instead of '6, 2', '5, 3',
> '2, 3'.

well, then do do:

insert into t2(x) select (b || ', ' || a)  from t;
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to