It is possible to substitute a statement like this
select column1,column2,column3
with something like
select like 'column_'
in a Postgresql query?
It is possible to substitute a statement like this
select column1,column2,column3
with something like
select like 'column_'
in a Postgresql query?
No, you cannot use LIKE
in the SELECT
part of the query.
Wildcards can only be used in the WHERE
part of the query.