Search before asking
Description
mysql:
select unix_timestamp(cast('2020-12-12 12:12:12.123'as datetime(3)));
unix_timestamp(cast('2020-12-12 12:12:12.123'as datetime(3)))
--1607746332.123ours:
mysql>select unix_timestamp(cast('2020-12-12 12:12:12.123'as datetimev2(3)));
+------------+
| 1607746332 |
+------------+
| 1607746332 |
+------------+1 row inset (0.10 sec)so we need a new version of unix_timestamp which could calculate the microseconds.
Use case
No response
Related issues
No response
Are you willing to submit PR?
Code of Conduct
Search before asking
Description
mysql:
ours:
so we need a new version of
unix_timestampwhich could calculate the microseconds.Use case
No response
Related issues
No response
Are you willing to submit PR?
Code of Conduct