2014-02-21 19 views

답변

10

:

오퍼레이터 ~~LIKE는 등가이며,이 ~~*ILIKE에 대응한다. NOT LIKENOT ILIKE을 나타내는 !~~ 및 연산자가 각각 있습니다. 이 모든 연산자는 PostgreSQL에 고유합니다.

4

실망스러운 index of the documentation에는 나와 있지 않습니다.

그래서 내가 psql에보고했다 :

regress=> \do ~~ 
            List of operators 
    Schema | Name | Left arg type | Right arg type | Result type |  Description  
------------+------+---------------+----------------+-------------+------------------------- 
pg_catalog | ~~ | bytea   | bytea   | boolean  | matches LIKE expression 
pg_catalog | ~~ | character  | text   | boolean  | matches LIKE expression 
pg_catalog | ~~ | name   | text   | boolean  | matches LIKE expression 
pg_catalog | ~~ | text   | text   | boolean  | matches LIKE expression 
(4 rows) 

그것은 LIKE에 대한 연산자 별칭이의를, 그게 다야. PostgreSQL의 문서 9.7.1. LIKE 가입일

관련 문제