我是postgres的新手,有时候我一直在研究Mysql。我需要将内容从Mysql表迁移到Postgres表。
我的Postgres表是这样的:
Column | Type | Modifiers
--------------------------------+-----------------------------+------------------------------------------------------------------------------------------------
id | integer |
created_at | timestamp without time zone | not null default timezone('UTC'::text, now())
updated_at | timestamp without time zone | not null default timezone('UTC'::text, now())
key_classification | character varying(2000) | not null
我从mysql表中插入created_at和updated_at值,格式为“2014-09-04 23:40:14”。
当我在postgres表中插入一行时,默认时间戳的格式为“2016-01-22 17:44:53.342757”,其中包括时间戳中的毫秒数。
现在我需要将毫秒添加到mysql时间戳格式以匹配postgres表格式。
请帮助将毫秒添加到时间戳中。
提前致谢!
答案 0 :(得分:0)
我正在运行Mysql / MariaDB
MariaDB [(none)]> SHOW VARIABLES LIKE "%version%";
+-------------------------+-----------------+
| Variable_name | Value |
+-------------------------+-----------------+
| innodb_version | 5.6.25-73.1 |
| protocol_version | 10 |
| slave_type_conversions | |
| version | 10.0.21-MariaDB |
| version_comment | MariaDB Server |
| version_compile_machine | x86_64 |
| version_compile_os | Linux |
| version_malloc_library | system |
+-------------------------+-----------------+
8 rows in set (0.00 sec)
我引用了11.3.6 Fractional Seconds in Time Values 哪个是mysql版本5.7
运行示例
As mysql Admin
mysql -u USERNAME -p
CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';
CREATE DATABASE test;
GRANT ALL ON test.* TO 'test'@'localhost';
退出然后以测试方式登录
mysql -u test -p
密码为test
然后
CREATE TABLE test.td6(ts6 timestamp(6));
INSERT INTO test.td6 VALUES ('2016-01-22 17:44:53.342757');
一切顺利