在PostgreSQL中查询日期

时间:2014-10-01 09:21:12

标签: sql postgresql

以下是我的样本表

create table mytable ( id int ,name text);

insert into mytable values(1,'tom');

insert into mytable values(2,'jerry');

select * from mytable;

结果...

  ID Name
  1  tom
  2  jerry

我的预期结果..

  ID Name
  1  tom_01_10_2014
  2  jerry_01_10_2014

1 个答案:

答案 0 :(得分:0)

select id,name||'_'||to_char(now()::date,'dd_mm_yyyy')  dated_name from mytable

to_char()now()