INSERT INTO table1 (cc, ds, ui, uis, et, st, cid, clid, lat,long, acc,
p_lat, p_long, p_acc, ec, c_tag, created_at)
SELECT cc, ds, a.hi, uis, et/1000 , st, cid, clid, lat,long, acc, p_lat, p_long, p_acc, ec, c_tag, now()
FROM table2 a LEFT JOIN table3 b ON a.hi = b.hi order by a.hi, et ASC;
此查询打印PostgresXL不支持子查询的错误。任何有关以另一种方式解决查询的帮助都表示赞赏。感谢。
错误:Postgres-XL目前不支持子查询中的ORDER BY 版本:postgres --version postgres(PostgreSQL)9.2.4(Postgres-XL 9.2.0)