Using postgreSQL 8.1.11, is there a way to select a set of columns that have name begining with same prefix.
Suppose we have columns : PREFIX_col1, PREFIX_col2, ...
Is it possible to do a request like :
SELECT 'PREFIX_*' FROM mytable;
Wich of course doesn't work.