9.17.5. Row-wise Comparison

Поиск
Список
Период
Сортировка
От TJ O'Donnell
Тема 9.17.5. Row-wise Comparison
Дата
Msg-id 4254AD87.2030508@acm.org
обсуждение исходный текст
Ответы Re: 9.17.5. Row-wise Comparison  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
In tbl with columns a,b,c,d.
I've been using syntax like
select a from tbl where (b,c,d) > (1,2,3)  to mean
select a from t where b>1 and b>2 and d>3

But I see in the manual at:
http://www.postgresql.org/docs/7.4/interactive/functions-comparisons.html#AEN12735
that only = and <> operators are supported.  Does this section of the manual
not properly apply to this query?  Is the manual in error, or am I
not understanding?

TJ


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [GENERAL] Problems with Set Returning Functions (SRFs)
Следующее
От: Tom Lane
Дата:
Сообщение: Re: 9.17.5. Row-wise Comparison