Database.Guide

Skip to content

Beginners

  • What is a Database?
  • Database Tutorial

SQL

  • SQL Tutorial
  • SQL Reference
  • SQL Joins Tutorial
  • SQL Transactions Tutorial
  • Basic SQL Queries

Categories

  • Azure SQL Edge (17)
  • Database Concepts (99)
  • Database Tools (72)
  • DBMS (9)
  • DuckDB (161)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,170)
  • SQLite (299)

Tag: dates

How to Convert a Unix Timestamp to a Date/Time Value in PostgreSQL

Posted on May 5, 2022 by Ian

In PostgreSQL, we can use the to_timestamp() function to convert a Unix timestamp value to a date/time value.

The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC).

Continue reading →
PostgreSQL dates, how to, psql

Subtract Weeks from a Date in PostgreSQL

Posted on May 2, 2022 by Ian

We can use the - operator to subtract one or more weeks from a date in PostgreSQL.

Continue reading →
PostgreSQL dates, how to, psql

Return the First Monday of Each Month in SQLite

Posted on April 30, 2022 by Ian

We can use SQLite’s DATE() function to return the first Monday of each month for a given year, based on the date we provide.

But it’s not limited to Monday. We can also get the first Tuesday, Wednesday, Thursday, Friday, etc of each month.

Continue reading →
SQLite dates, how to

Get the Last Day of the Month in PostgreSQL

Posted on April 29, 2022 by Ian

We can use the following technique in PostgreSQL to return the last day of a given month.

This could be the last day of the current month, or the last day of the month based on a date that we specify.

Continue reading →
PostgreSQL dates, how to, psql

How to Get the Number of Days in a Month in MySQL

Posted on April 27, 2022 by Ian

Check out the following technique in MySQL if you need to find out how many days are in a month based on a given date.

Continue reading →
MySQL dates, how to

Convert a Unix Timestamp to a Date Value in Oracle

Posted on April 26, 2022 by Ian

In Oracle Database, we can use the following technique to return a date from a Unix timestamp value.

The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC).

Continue reading →
Oracle dates, how to

Subtract Months from a Date in PostgreSQL

Posted on April 25, 2022 by Ian

In PostgreSQL, we can use the - operator to subtract one or more months from a date.

Continue reading →
PostgreSQL dates, how to, psql

Get the First, Second, Third, or Fourth Monday of a Month in SQLite

Posted on April 24, 2022 by Ian

We can use SQLite’s DATE() function to perform calculations on a given date. One of the things we can do is return the first, second, third, or fourth instance of a given day within a given month.

Continue reading →
SQLite dates, how to

How to Get the End of the Month in MariaDB

Posted on April 21, 2022 by Ian

In MariaDB, we can use the LAST_DAY() function to return the last day of a given month.

This could be the last day of the current month, or the last day of the month based on a date that we specify.

Continue reading →
MariaDB dates, how to

How to Return the Unix Timestamp in Oracle

Posted on April 21, 2022 by Ian

Here’s an option for returning the Unix timestamp when using Oracle Database.

The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC).

Continue reading →
Oracle dates, how to
  • «
  • 1
  • …
  • 8
  • 9
  • 10
  • 11
  • 12
  • …
  • 46
  • »

About Database.Guide | Privacy Policy