The CREATE TABLE AS is Standard SQL, but you probably have to add a Primary Index, because the default is a NUPI on the first column and this may result in a skewed table:
create table foo as (any complex select) with data primary index (columnA, columnB);
Dieter