Hi all!
I need to select only the fields not marked as hidden from a view, but when I execute the select all the columns are returned. Help please I'm in a desperate timeframe.
The table:
Field | Type | Visible |
---|---|---|
Name | Varchar | True |
Adress | Varchar | True |
Credit Card Number | Number | False |
Phone | Varchar | True |
Last Update | Date | True |
The select:
SELECT * FROM "TEST"."test/TestView" WHERE "LAST_UPDATE" BETWEEN '1900-01-01 00:00:00' and '2015-07-06 23:59:59' LIMIT 1000 OFFSET 0
Problem is that in the result set the column Credit Card Number is present, and I don't want that column to be returned in the result set.
Thanks in advance!!!!