提交 646ff160 authored 作者: Thomas Mueller's avatar Thomas Mueller

MySQL compatibility: TIMESTAMPDIFF is now an alias for DATEDIFF.

上级 4ab076a0
...@@ -919,8 +919,8 @@ SET AUTOCOMMIT { TRUE | ON | FALSE | OFF } ...@@ -919,8 +919,8 @@ SET AUTOCOMMIT { TRUE | ON | FALSE | OFF }
Switches auto commit on or off. Switches auto commit on or off.
This setting can be appended to the database URL: jdbc:h2:test;AUTOCOMMIT=OFF - This setting can be appended to the database URL: jdbc:h2:test;AUTOCOMMIT=OFF -
however this will not work as expected when using a connection pool however this will not work as expected when using a connection pool
(the connection pool manager will re-enable autocommit when returning (the connection pool manager will re-enable autocommit when returning
the connection to the pool, so autocommit will only be disabled the first the connection to the pool, so autocommit will only be disabled the first
time the connection is used. time the connection is used.
"," ","
SET AUTOCOMMIT OFF SET AUTOCOMMIT OFF
...@@ -2941,12 +2941,13 @@ DATEADD('MONTH', 1, DATE '2001-01-31') ...@@ -2941,12 +2941,13 @@ DATEADD('MONTH', 1, DATE '2001-01-31')
" "
"Functions (Time and Date)","DATEDIFF"," "Functions (Time and Date)","DATEDIFF","
DATEDIFF(unitString, aTimestamp, bTimestamp) { DATEDIFF | TIMESTAMPDIFF } (unitString, aTimestamp, bTimestamp)
"," ","
Returns the difference between two timestamps. Returns the difference between two timestamps.
This method returns a long. This method returns a long.
The string indicates the unit. The string indicates the unit.
The same units as in the EXTRACT function are supported. The same units as in the EXTRACT function are supported.
TIMESTAMPDIFF is supported for MySQL compatibility.
"," ","
DATEDIFF('YEAR', T1.CREATED, T2.CREATED) DATEDIFF('YEAR', T1.CREATED, T2.CREATED)
" "
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论