From: Peter Eisentraut Date: Tue, 24 Nov 2009 19:21:15 +0000 (+0000) Subject: Fix syntax in extract() examples X-Git-Tag: REL8_5_ALPHA3~100 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=f6a79c5901f36a822bdbffda1077613828ce6863;p=postgresql.git Fix syntax in extract() examples Author: Erik Rijkers --- 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 @@ - + Functions and Operators @@ -5274,9 +5274,9 @@ SELECT SUBSTRING('XY1234Z', 'Y*?([0-9]{1,3})'); to_char(..., 'ID')'s day of the week numbering - matches the extract('isodow', ...) function, but + matches the extract(isodow from ...) function, but to_char(..., 'D')'s does not match - extract('dow', ...)'s day numbering. + extract(dow from ...)'s day numbering.