1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| --------------
SET AUTOCOMMIT = 0
--------------
--------------
START TRANSACTION
--------------
--------------
DROP DATABASE IF EXISTS `base`
--------------
--------------
CREATE DATABASE `base`
DEFAULT CHARACTER SET `latin1`
DEFAULT COLLATE `latin1_general_ci`
--------------
--------------
DROP TABLE IF EXISTS `test`
--------------
--------------
CREATE TABLE `test`
( `id` integer unsigned not null auto_increment primary key,
`num` integer unsigned not null,
`string` varchar(255) not null
) ENGINE=InnoDB
DEFAULT CHARSET=`latin1` COLLATE=`latin1_general_ci`
ROW_FORMAT=COMPRESSED
--------------
--------------
insert into `test` (`num`,`string`) value
(2100386500,'2017-10-08T11:50:20.923179Z')
--------------
--------------
select * from `test`
--------------
+----+------------+-----------------------------+
| id | num | string |
+----+------------+-----------------------------+
| 1 | 2100386500 | 2017-10-08T11:50:20.923179Z |
+----+------------+-----------------------------+
--------------
select from_unixtime(num),
date_format(string, '%Y-%m-%d %h:%i:%s.%f')
from `test`
--------------
+---------------------+---------------------------------------------+
| from_unixtime(num) | date_format(string, '%Y-%m-%d %h:%i:%s.%f') |
+---------------------+---------------------------------------------+
| 2036-07-23 02:41:40 | 2017-10-08 11:50:20.923179 |
+---------------------+---------------------------------------------+
--------------
COMMIT
--------------
--------------
SET AUTOCOMMIT = 1
--------------
Appuyez sur une touche pour continuer... |
Partager