PHP搜索功能在pgsql表中查找

I want to make a search function in my website. I want to search for a string in all fields of my table (about 13 columns). If one row contains a field that matches the string (like operator) I want it to be added to result.

Example

|field 1 | field 2 | field 3|
 some      string     test    
 test      some      string
 one       simple    string

Now basically if I search for the string "test" I want to have the first two rows.

Is there a wildcard option for WHERE that I could do something :

SELECT * from my.table WHERE * like '%string%';

There is no such syntax in PostgreSQL (or any other DBMS).

As Spudley pointed out using a query like like '%string%' will be quite slow.

If this is something that is needed very often you should definitely look into PostgreSQL's full text search capabilities.