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 (160)
  • 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 Get the Last Day of the Month in SQL

Posted on June 15, 2022 by Ian

Below are examples of using SQL to return the last day of the month across various DBMSs.

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

Continue reading →
MariaDB, MySQL, Oracle, PostgreSQL, SQL, SQL Server, SQLite dates, how to

Add Years to a Date in SQLite

Posted on June 5, 2022 by Ian

In SQLite, we can use the DATE() function to add one or more years to a date.

For datetime values, we can use the DATETIME() function.

Continue reading →
SQLite dates, how to

How to Convert a Unix Timestamp to a Date/Time in SQL

Posted on May 30, 2022 by Ian

Here are examples of converting a Unix timestamp to a date/time value in some of the major RDBMSs.

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 →
MariaDB, MySQL, Oracle, PostgreSQL, SQL, SQL Server, SQLite dates, how to

Subtract Minutes from a Time Value in SQLite

Posted on May 29, 2022 by Ian

In SQLite, we can use the TIME() function to subtract one or more minutes from a time value.

For datetime values, we can use the DATETIME() function.

Continue reading →
SQLite dates, how to

3 Ways to Get the First Day of the Month in MySQL

Posted on May 25, 2022 by Ian

Here are three methods we can use to return the first day of a given month in MySQL.

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

Getting the first day of the month allows us to perform further calculations on the resulting date, like adding a certain number of days to the start of the month, etc.

Continue reading →
MySQL dates, how to

Add Seconds to a Time Value in SQLite

Posted on May 22, 2022 by Ian

In SQLite, we can use the TIME() function to add a given number of seconds to a time value.

If we’re dealing with datetime values, we can use the DATETIME() function.

Continue reading →
SQLite dates, how to

Subtract Hours from a Time Value in PostgreSQL

Posted on May 19, 2022 by Ian

In PostgreSQL, we can use the - operator to subtract one or more hours from a time value.

By “time” value, this could be an actual time value, a timestamp, or an interval. We can also subtract hours from a date value or a date and time combination.

Continue reading →
PostgreSQL dates, how to, psql

Return the Unix Timestamp in SQL

Posted on May 16, 2022 by Ian

Below are examples of using some of the more popular RDBMSs to return the Unix timestamp.

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 →
MariaDB, MySQL, Oracle, PostgreSQL, SQL, SQL Server, SQLite dates, how to

2 Ways to Get the Number of Days in a Month in SQLite

Posted on May 15, 2022 by Ian

Here are two options for returning the number of days in a given month in SQLite. This could be the number of days in the current month, or it could be based on a given date.

Continue reading →
SQLite dates, how to

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
  • «
  • 1
  • …
  • 7
  • 8
  • 9
  • 10
  • 11
  • …
  • 46
  • »

About Database.Guide | Privacy Policy