~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/current_time_functions.rst

  • Committer: Monty Taylor
  • Date: 2011-03-15 16:10:15 UTC
  • mfrom: (2235.3.1 staging)
  • Revision ID: mordred@inaugust.com-20110315161015-qceggirmf3cct7cw
Merge in libdrizzle install changes, doc changes and some header
refactoring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
now()                               
54
54
------
55
55
 
56
 
NOW returns the current date and time. The return value will be expressed as 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS.uuuuuu, depending on whether the function is used in a string or numeric context. The value is expressed in the current time zone.
 
56
NOW returns the current date and time. The return value will be expressed as 'YYYY-MM-DD HH:MM:SS:mmmmmm' or YYYYMMDDHHMMSS.uuuuuu, depending on whether the function is used in a string or numeric context. The value is expressed in the current time zone.
57
57
 
58
58
.. code-block:: mysql
59
59
 
60
60
        SELECT NOW();
61
 
                -> '2011-02-15 13:40:06'
 
61
                -> '2011-02-15 13:40:06:002203'
62
62
        SELECT NOW() + 0;
63
 
                -> 20110215134006.000000
 
63
                -> 20110215134006.002203
64
64
 
65
65
NOW returns a constant time that indicates the time at which the statement began to execute. 
66
66
 
70
70
 
71
71
Returns:
72
72
 
73
 
+---------------------+----------+---------------------+
74
 
| NOW()               | SLEEP(2) | NOW()               |
75
 
+=====================+==========+=====================+
76
 
| 2011-02-20 20:15:09 |        0 | 2011-02-20 20:15:09 |
77
 
+---------------------+----------+---------------------+
 
73
+----------------------------+----------+----------------------------+
 
74
| NOW()                      | SLEEP(2) | NOW()                      |
 
75
+============================+==========+============================+
 
76
| 2011-02-20 20:15:09:002203 |        0 | 2011-02-20 20:15:09:002203 |
 
77
+----------------------------+----------+----------------------------+
78
78
 
79
79
SYSDATE, however, returns the exact time at which the function was invoked.
80
80