diff options
author | unknown <paul@teton.kitebird.com> | 2002-01-17 16:22:54 -0600 |
---|---|---|
committer | unknown <paul@teton.kitebird.com> | 2002-01-17 16:22:54 -0600 |
commit | c20e45d6221c68050c7c316619248f694d412b1d (patch) | |
tree | 03d1a4925c6d5c2b7decdcfa43321e3d53c74964 | |
parent | ca907d20991f95ee8bcfd46c9498b705848ebe23 (diff) | |
download | mariadb-git-c20e45d6221c68050c7c316619248f694d412b1d.tar.gz |
manual.texi fix for colons in TIME being referred to as semicolons
Docs/manual.texi:
fix for colons in TIME being referred to as semicolons
-rw-r--r-- | Docs/manual.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index ad2bae3a0bb..2759e78e568 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -28935,14 +28935,14 @@ seconds values that are less than @code{10}. @code{'8:3:2'} is the same as @code{'08:03:02'}. Be careful about assigning ``short'' @code{TIME} values to a @code{TIME} -column. Without semicolon, MySQL interprets values using the +column. Without colons, MySQL interprets values using the assumption that the rightmost digits represent seconds. (MySQL interprets @code{TIME} values as elapsed time rather than as time of day.) For example, you might think of @code{'1112'} and @code{1112} as meaning @code{'11:12:00'} (12 minutes after 11 o'clock), but MySQL interprets them as @code{'00:11:12'} (11 minutes, 12 seconds). Similarly, @code{'12'} and @code{12} are interpreted as @code{'00:00:12'}. -@code{TIME} values with semicolon, instead, are always treated as +@code{TIME} values with colons, by contrast, are always treated as time of the day. That is @code{'11:12'} will mean @code{'11:12:00'}, not @code{'00:11:12'}. |