getting date from timestamp in PostgreSQL

前端 未结 2 458
长发绾君心
长发绾君心 2021-02-18 14:22

I have a PostgreSQL timestamp as

2009-12-22 11:01:46

I need to change this to date as

2009-12-22

So that I ca

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-18 14:40

    Cast it to date.

    SELECT yourtimestamp::date;
    

    If you need to extract other kinds of stuff, you might want to use EXTRACT or date_trunc

    Both links are to the same page, were you'll find more date/time-related functions.

提交回复
热议问题