insert into Table1 (name, description, CreatedDate)
values ('Hie', 'helloef',TO_TIMESTAMP('2014-04-30 11:09:00 AM', 'YYYY-MM-DD HH24:MI:SS tt'));
我尝试插入tt
,AM
和PM
。但这并没有插入表格。
插入的结果是,
"2014-04-30 11:09:00"
注意: CreatedDate
的数据类型为timestamp
。
如何将tt插入postgresql
表?