1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2018 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-->
<refentry id="fn_stringdate">
<refmeta>
<refentrytitle>stringdate</refentrytitle>
<refmiscinfo>time</refmiscinfo>
<refmiscinfo>type</refmiscinfo>
</refmeta>
<refnamediv>
<refname>stringdate</refname>
<refpurpose> Convert a string to a datetime</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis id="fsyn_stringdate">
<funcprototype id="fproto_stringdate">
<funcdef><function>stringdate</function></funcdef>
<paramdef>in <parameter>str</parameter> varchar</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1 id="desc_stringdate"><title>Description</title>
<para>stringdate converts dates and timestamps from text to the internal
<type>DATETIME</type> type.</para>
<para>The external format is: YYYY.MM.DD hh:mm.ss uuuuuu
where uuuuuu represents number of microseconds.</para>
<para>If trailing parts are omitted from the string given to stringdate,
they are assumed to be zero. The three first parts are mandatory.
Note that use of <programlisting>cast (x as datetime)</programlisting> is preferred
over this function.</para>
</refsect1>
<refsect1 id="params_stringdate"><title>Parameters</title>
<refsect2><title>str</title>
<para>A <type>varchar</type> date in human-readable (external)
format.</para>
</refsect2>
</refsect1>
<refsect1 id="errors_stringdate"><title>Errors</title>
<table><title>Errors signalled by <function>datestring</function> and
<function>stringdate</function></title>
<tgroup cols="4">
<tbody>
<row>
<entry>SQLState</entry>
<entry>Error Code</entry>
<entry>Error Text</entry>
<entry>Description</entry>
</row>
<row>
<entry><errorcode>22007</errorcode></entry>
<entry><errorcode>DT006</errorcode></entry>
<entry><errorname>Cannot convert <offending string> to datetime</errorname></entry>
<entry></entry>
</row>
<row>
<entry><errorcode>22002</errorcode></entry>
<entry><errorcode>DT007</errorcode></entry>
<entry><errorname>Nulls not allowed as parameters to stringdate</errorname></entry>
<entry></entry>
</row>
</tbody>
</tgroup>
</table>
</refsect1>
<refsect1 id="examples"><title>Examples</title>
<example id="ex_stringdate_1">
<title>Stringdate example with datestring_GMT</title>
<para>We are at central european time zone CET(GMT+1).</para>
<screen>SQL> use Demo;
Done. -- 3 msec.
SQL> select (datestring_GMT (stringdate ('2000-01-01 22:00')));
callret
VARCHAR
_______________________________________________________________________________
2000-01-01 21:00:00.000000
1 Rows. -- 45 msec.
SQL> select left (datestring(ShippedDate), 10) from Orders
where ShippedDate > stringdate ('1996.6.3');
callret
VARCHAR
_______________________________________________________________________________
1996-06-04
1996-06-04
1996-06-05
1996-06-05
1996-06-05
5 Rows. -- 3 msec.
</screen>
</example>
</refsect1>
<refsect1 id="seealso_stringdate"><title>See Also</title>
<para>
<link linkend="fn_datestring"><function>datestring</function></link>
</para>
<para> The discussion of
<link linkend="DTTIMESTAMP"><type>TIMESTAMP</type></link>
datatype in section <link linkend="coredbengine">Database Concepts</link>
of the documentation.</para>
</refsect1>
</refentry>
|