Here are a couple of ways to return the number of days in a given month in Oracle Database. This could be the number of days in the current month, or the number of days in a month based on a specified date.
Continue readingTag: dates
Subtract Days from a Date in SQLite
In SQLite, we can use the DATE()
function to subtract one or more days from a date.
For datetime values, we can use the DATETIME()
function.
Return the Number of Days in a Month in MariaDB
Here’s a nifty trick we can use in MariaDB to return the number of days in a month based on a given date.
Continue reading3 Ways to Get the First Day of the Month in SQL Server
Below are three options for using T-SQL to return the first day of the month in SQL Server.
This could be the first day of the current month, or the first day of a month based on a given date.
Continue readingSubtract Minutes from a Time Value in PostgreSQL
In PostgreSQL, we can use the -
operator to subtract one or more minutes from a time value.
By “time” value, this could be an actual time
value, a timestamp
, or an interval
. We can also subtract minutes from a date
value or a date
and time
combination.
Add Months to a Date in SQLite
In SQLite, we can use the DATE()
function to add one or more months to a date.
When we’re dealing with datetime values, we can use the DATETIME()
function.
How to Get the Last Day of the Month in Oracle
In Oracle Database we can use the LAST_DAY()
function to return the last day of a given month. This can be the last day of the current month or the last day of month based on a specified date.
How to Get the Last Day of the Month in MySQL
We can use MySQL’s 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 readingGet the Number of Days in a Month in PostgreSQL
Here’s an example of using PostgreSQL to return the number of days in a month, based on a given date.
Continue readingGet the First Day of the Month in PostgreSQL
We can use the following method in PostgreSQL to return the first day of a given month.
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