From: Peter Eisentraut Date: Tue, 24 Nov 2009 19:20:53 +0000 (+0000) Subject: Fix syntax in extract() examples X-Git-Tag: REL8_3_9~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=602878d5abe0033b3bf59ac11d5c58bd1f553632;p=postgresql Fix syntax in extract() examples Author: Erik Rijkers --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index bb6ae91978..d90ba94b4e 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -5166,9 +5166,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.