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);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.