~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/current_time_functions.rst

  • Committer: Mark Atwood
  • Date: 2011-09-15 18:01:02 UTC
  • mfrom: (2414.2.1 fix-bug-850782)
  • Revision ID: me@mark.atwood.name-20110915180102-mj91sm6j5kj6wfyt
mergeĀ lp:~vjsamuel/drizzle/fix-bug-850782

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
        SELECT CURDATE() + 0;
15
15
                -> 20110213
16
16
 
17
 
current_time
18
 
--------------
19
 
 
20
 
Returns the current time as a value in 'HH:MM:SS' or HHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. The value is expressed in the current time zone.
21
 
 
22
 
.. code-block:: mysql
23
 
 
24
 
        SELECT CURTIME();
25
 
                -> '10:30:09'
26
 
        SELECT CURTIME() + 0;
27
 
                -> 103009.000000
28
 
 
29
 
 
30
 
current_timestamp
31
 
------------------
32
 
 
33
 
See :ref:`now`
34
 
 
35
 
CURRENT_TIMESTAMP() is a synonym for NOW(). 
36
 
 
37
 
localtime
38
 
-----------
39
 
 
40
 
See :ref:`now`
41
 
 
42
 
LOCALTIME() is a synonym for NOW(). 
43
 
 
44
 
localtimestamp                     
45
 
---------------
46
 
 
47
 
See :ref:`now`
48
 
 
49
 
LOCALTIMESTAMP() is a synonym for NOW(). 
50
 
 
51
17
.. _now:
52
18
 
53
19
now()                               
92
58
 
93
59
When using replication, the binary log will include SET TIMESTAMP entries so that a database can be restored from the binary log. In doing this, values from NOW will be adjusted to the same times as when the original SQL statements were executed. SYSDATE entries will be unaffected by SET TIMESTAMP entries.
94
60
 
 
61
current_timestamp
 
62
------------------
 
63
 
 
64
See :ref:`now`
 
65
 
 
66
CURRENT_TIMESTAMP() is a synonym for NOW(). 
 
67
 
 
68
localtime
 
69
-----------
 
70
 
 
71
See :ref:`now`
 
72
 
 
73
LOCALTIME() is a synonym for NOW(). 
 
74
 
 
75
localtimestamp                     
 
76
---------------
 
77
 
 
78
See :ref:`now`
 
79
 
 
80
LOCALTIMESTAMP() is a synonym for NOW(). 
 
81