Create hidden column in postgresql

database, postgresql, security

Solution

You can effectively do this by creating a view and selecting only the columns you wish to show.

Problem

Can we create hidden column in the table. It should be listed only when I specify column name explicitly in select statement.

Original source