If I want to get all records so that the column value foocontains a row 'bar', is there an easy way to do this in SQL or Postgresql?
Something like ' WHERE foo = "bar"', but instead =it will be something like ' WHERE foo CONTAINS "bar"'.
Postgres Version 9.3
source
share