[ADMIN]substring check function

Поиск
Список
Период
Сортировка
От Jonathan H. Wheaton
Тема [ADMIN]substring check function
Дата
Msg-id 13776.62188.190556.977513@app35-69.applink.net
обсуждение исходный текст
Ответ на [ADMIN]substring check function  ("ÀÌÀ±¿µ" <ahalf@sbsmail.net>)
Список pgsql-admin
ÀÌÀ±¿µ writes:
 > hi all!
 > coding a database search program on web,
 > i want to have that pg to find tuples including
 > the string that a user inputs.
 > how can i do?
 > Does Postgres supply built-in function such like strstr()
 > in C ?
 > I'm wating you.
 > ------------------------------------------------------
 >                 Yoon-young Lee from Korea
 >                 ~~m..m~~

    You can use the SQL "like" operator and do something like:

select *
from table
where field like '%somestring%'

    The "%" == zero or more of any character.

Jonathan
--
Jonathan H. Wheaton
jwheaton@applink.net

В списке pgsql-admin по дате отправления:

Предыдущее
От: Bryan Brunton
Дата:
Сообщение: RE: User Authentication Problem
Следующее
От: cheng wah yeung
Дата:
Сообщение: How to install postgresql in different directory