Index: doc/src/sgml/datatype.sgml
===================================================================
RCS file: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v
retrieving revision 1.217
diff -c -c -r1.217 datatype.sgml
*** doc/src/sgml/datatype.sgml	21 Nov 2007 04:01:37 -0000	1.217
--- doc/src/sgml/datatype.sgml	27 Nov 2007 05:45:13 -0000
***************
*** 842,847 ****
--- 842,855 ----
      floating-point literals, as well as <quote>typical</quote>
      currency formatting, such as <literal>'$1,000.00'</literal>.
      Output is generally in the latter form but depends on the locale.
+     Non-quoted numeric values can be converted to <type>money</type> by
+     casting the numeric value to <type>text</type> and then
+     <type>money</type>:
+ <programlisting>
+ SELECT 1234::text::money;
+ </programlisting>
+     There is no simple way of doing the reverse;  casting a <type>money</type> value to a
+     numeric type.
     </para>
  
     <para>
