diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-11-24 19:21:15 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-11-24 19:21:15 +0000 |
commit | f6a79c5901f36a822bdbffda1077613828ce6863 (patch) | |
tree | 6e4891fe69fb07f4353ed814f5862e96b73fc6a7 | |
parent | 14cc1ed7eda121d7b19a3ae0ad4a7d22da2f7cf5 (diff) | |
download | postgresql-f6a79c5901f36a822bdbffda1077613828ce6863.tar.gz postgresql-f6a79c5901f36a822bdbffda1077613828ce6863.zip |
Fix syntax in extract() examples
Author: Erik Rijkers <er@xs4all.nl>
-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 b6737ac1774..f2906cc8223 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.491 2009/10/21 20:38:58 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.492 2009/11/24 19:21:15 petere Exp $ --> <chapter id="functions"> <title>Functions and Operators</title> @@ -5274,9 +5274,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> |