diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-11-24 19:21:04 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-11-24 19:21:04 +0000 |
commit | 7c605d5dfa8033a7d1394af8e61cde0d23fe6661 (patch) | |
tree | 8f5c0200989a71cecf7b9192f4b286ca0e801455 /doc/src | |
parent | 5e4b869f29ea13729dd4e4200c08702d9c91828d (diff) |
Fix syntax in extract() examples
Author: Erik Rijkers <er@xs4all.nl>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 5b363d705b2..9a8df8cf4f7 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.482.2.1 2009/08/16 19:55:28 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.482.2.2 2009/11/24 19:21:04 petere Exp $ --> <chapter id="functions"> <title>Functions and Operators</title> @@ -5251,9 +5251,9 @@ SELECT SUBSTRING('XY1234Z', 'Y*?([0-9]{1,3})'); <listitem> <para> <function>to_char(..., 'ID')</function>'s day of the week numbering - matches the <function>extract('isodow', ...)</function> function, but + matches the <function>extract(isodow from ...)</function> function, but <function>to_char(..., 'D')</function>'s does not match - <function>extract('dow', ...)</function>'s day numbering. + <function>extract(dow from ...)</function>'s day numbering. </para> </listitem> |