diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 83859bac76f..f5b861b387f 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -897,6 +897,13 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
       does not specify a value for the column.  If there is no default
       for a column, then the default is null.
      </para>
+
+     <para>
+      Note, a string that returns a volatile result once cast to a data
+      type, like <literal>'now'::timestamptz</literal>, is evaluated at
+      table creation time, while <literal>now::timestamptz</literal>
+      (without quotes) is evaluated at data insertion time.
+     </para>
     </listitem>
    </varlistentry>
 
