Hello
My db contains a view. I can select the view no problem:
SELECT * FROM MyView;
However, i am getting "zero-length columns are not allowed" error, when i try to create a table from the view:
CREATE TABLE MyTable AS SELECT * FROM MyView ;
How can i fix this?
thx