Table MyTable with columns called A and B. A view is created based on selecting all columns from MyTable i.e.
SQL CREATE VIEW MyView as Select * from MyTable
When to the script tab in Schema Browser for the view it displays as:
CREATE OR REPLACE VIEW MyView as SELECT "A","B" from mytable.
Why is the * being replaced with the "A,"B" column names?
Is there an option to have it display as it was originally created?
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center