Hi,
I'm using commercial version of ORACLE SQL and I want to create a table from SELECT, with an additional new column in the final table-
CREATE TABLE NEW_TABLE (new_column char(1)) AS (SELECT col_1, col_2, col_3 FROM OTHER_TABLE);
But, this is throwing error, ORA-01773: may not specify column datatypes in this CREATE TABLE
Please guide on this