8

It is possible to substitute a statement like this

select column1,column2,column3

with something like

select like 'column_'

in a Postgresql query?

Laurenz Albe
  • 209,280
  • 17
  • 206
  • 263
ilFonta
  • 271
  • 3
  • 18

1 Answers1

1

No, you cannot use LIKE in the SELECT part of the query.

Wildcards can only be used in the WHERE part of the query.

Rui Costa
  • 417
  • 2
  • 11