diff options
author | Bruce Momjian | 2005-06-14 23:47:39 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-06-14 23:47:39 +0000 |
commit | 8b84aebddf02a34b07b22d368a0cf72341278921 (patch) | |
tree | f1fffb3c44014832c209e3c953d9bbb49ab199fd /doc/src | |
parent | 495f9aa09820758e08b34a8aeb7bfbc7b93158c3 (diff) |
Add BETWEEN SYMMETRIC.
Pavel Stehule
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 43df7d595c9..4fe5e1d6fca 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.255 2005/06/14 21:04:38 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.256 2005/06/14 23:47:39 momjian Exp $ PostgreSQL documentation --> @@ -282,6 +282,12 @@ PostgreSQL documentation There is no difference between the two respective forms apart from the <acronym>CPU</acronym> cycles required to rewrite the first one into the second one internally. + <indexterm> + <primary>BETWEEN SYMETRIC</primary> + </indexterm> + <token>BETWEEN SYMMETRIC</> is the same as <literal>BETWEEN</> + except there is no requirement that the argument to the left of <literal>AND</> be less than + or equal to the argument on the right; the proper range is automatically determined. </para> <para> |