Issues to be aware of when using To_char for YYYY-MM-DD HH:mm:ss conversion in PostgreSQL

Source: Internet
Author: User
Tags postgresql

In Java and some of the commonly used data (Mysql/sqlsever) in the month and day of the conversion, are used

SELECT to_char (current_date, ' yyyy-mm-dd hh:MM:ss ')

However, there is a problem with this in PostgreSQL, and executing the above statement in PG returns the result

2015-05-06 12:05:00

See, this is not what we want, how to deal with it? In PG, use the following method

SELECT to_char (current_date, ' yyyy-mm-dd hh24:MI:ss ')

The results are as follows

2015-05-06 00:00:00

This is what we want to result, it seems not to take for granted, that all databases are the same, be careful

Issues to be aware of when using To_char for YYYY-MM-DD HH:mm:ss conversion in PostgreSQL

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.