How to Format Date As 'Dd-Mm-Yyyy' From Bigint Value In Postgresql?

4 minutes read

In PostgreSQL, you can convert a bigint value representing a timestamp into a formatted date string using the TO_TIMESTAMP function along with the TO_CHAR function.


First, you need to cast the bigint value to a timestamp using the TO_TIMESTAMP function. For example, if your bigint value is stored in a column named "timestamp_column" in a table called "example_table", you can convert it to a timestamp like this:


TO_TIMESTAMP(example_table.timestamp_column)


Next, you can use the TO_CHAR function to format the timestamp as 'dd-mm-yyyy'. The 'dd-mm-yyyy' format specifier represents the day, month, and year in the desired order.


Here is an example query that converts a bigint value to a formatted date string:


SELECT TO_CHAR(TO_TIMESTAMP(example_table.timestamp_column), 'DD-MM-YYYY') AS formatted_date FROM example_table;


This query will return the bigint value from the "timestamp_column" column as a formatted date string in the 'dd-mm-yyyy' format.

Best Managed PostgreSQL Cloud Providers of September 2024

1
DigitalOcean

Rating is 5 out of 5

DigitalOcean

2
AWS

Rating is 4.9 out of 5

AWS

3
Vultr

Rating is 4.8 out of 5

Vultr

4
Cloudways

Rating is 4.7 out of 5

Cloudways


What is the function to add days to a date in PostgreSQL?

In PostgreSQL, you can use the + operator to add days to a date. Here is an example of how to add 7 days to a date:

1
SELECT '2023-01-15'::date + INTERVAL '7 days';


This will return 2023-01-22, which is the date 7 days after 2023-01-15.


How to extract day from bigint value in PostgreSQL?

To extract the day from a bigint value in PostgreSQL, you can use the TO_TIMESTAMP function to convert the bigint value to a timestamp and then use the EXTRACT function to extract the day from the timestamp. Here's an example query:

1
2
SELECT EXTRACT(DAY FROM TO_TIMESTAMP(your_bigint_column / 1000)) AS day
FROM your_table;


In this query, replace your_bigint_column with the name of the column containing the bigint value and your_table with the name of your table. The / 1000 division is used to convert the bigint value to seconds (assuming the bigint value represents Unix timestamp in milliseconds).


This query will extract the day from the timestamp converted from the bigint value in the specified column.


How to Format date in PostgreSQL?

In PostgreSQL, you can format a date using the to_char() function.


Here is an example of how to format a date in PostgreSQL:

1
SELECT to_char(current_date, 'YYYY-MM-DD');


In this example, we are formatting the current date to display in the format YYYY-MM-DD. You can customize the formatting according to your needs by changing the format string inside the to_char() function.


Here are some common format strings you can use with to_char():

  • YYYY : Year
  • MM : Month
  • DD : Day
  • HH : Hour
  • MI : Minute
  • SS : Second


You can combine these format strings and add separators like -, /, or , to format the date in the desired way.

Facebook Twitter LinkedIn Telegram

Related Posts:

In Oracle, you can convert a date in the format "yyyymmdd" to "dd-mon-yyyy" by utilizing the TO_DATE and TO_CHAR functions.Here's the syntax you can use:TO_CHAR(TO_DATE(date_string, 'yyyymmdd'), 'dd-mon-yyyy')Explanation of ...
In PostgreSQL, you can create a specific date by using the DATE function along with the desired year, month, and day values. You can specify the date manually by providing values for year, month, and day in the following format: DATE 'YYYY-MM-DD'. For ...
To convert the year format "yy" to "yyyy" in Oracle, you can use the "TO_CHAR" function. This function is used to convert a number or date to a string format. Specifically, you can use the "YYYY" format model to convert a 2-digi...