vortex Fri, 28 Jan 2011 07:42:19 -0800
Is it possible to join to tables and create a new table based on this join using only DAL?
CREATE TABLE newtable AS SELECT ta.key, ta.col1, tb.col2 FROM ta JOIN tb.col1 on (ta.key=tb.key)