Skip to content

Database.Guide

dates

How to Extract the Day, Month, and Year from a Date in SQLite

October 22, 2021 by Ian

In SQLite, we can use the strftime() function to return datetime values in our chosen format.

Therefore, we can use it to extract the day, month, and year from a date.

Read more

Categories SQLite Tags date format, dates, how to

3 Functions that Get the Day, Month, and Year from a Date in PostgreSQL

October 20, 2021 by Ian

PostgreSQL provides us with several ways to get the day, month, and year from a date.

Three functions that immediately come to mind are; DATE_PART(), EXTRACT(), and TO_CHAR().

Read more

Categories PostgreSQL Tags date format, dates, how to

Return the Day, Month, and Year in MySQL

October 19, 2021October 18, 2021 by Ian

MySQL has a bunch of different functions that enable us to get various date parts – such as the day, month, and year – from a date.

Read more

Categories MySQL Tags date format, dates, how to

YEAR() Examples – MySQL

October 17, 2021 by Ian

In MySQL, YEAR() is a built-in date and time function that returns the year from a given date expression.

It returns the year as a number in the range 1000 to 9999. For zero dates, it could return 0 or NULL with a warning, depending on the values in your sql_mode.

Read more

Categories MySQL Tags date functions, dates, functions, what is

List of MySQL Date Format Specifiers

October 13, 2021 by Ian

Here’s a list of MySQL format specifiers that can be used in format strings with functions like DATE_FORMAT(), STR_TO_DATE(), and UNIX_TIMESTAMP().

Read more

Categories MySQL Tags date format, dates, reference

Get the Month Name from a Date in SQL

October 13, 2021 by Ian

Most major RDBMSs provide at least one function that enables us to return the month name from a date.

Read more

Categories Azure SQL Edge, MariaDB, MySQL, Oracle, PostgreSQL, SQL, SQL Server Tags date format, dates, how to

2 Functions that Return the Month Name from a Date in MySQL

October 12, 2021 by Ian

The following two functions enable us to get the month name from a date in MySQL.

Read more

Categories MySQL Tags date format, dates, how to

Return the Short Day Name from a Date in Oracle

October 5, 2021 by Ian

In Oracle Database, we can use the TO_CHAR(datetime) function to return the various date parts from a datetime value, including the short day name.

The short day name is also referred to as the abbreviated day name. In any case, below are examples of returning the short day name from a date value in Oracle.

Read more

Categories Oracle Tags date format, dates, how to

Capitalization of Day and Month Names When Formatting Dates in Oracle

October 1, 2021 by Ian

When getting the day and/or month name from a date in Oracle, you may want to return it in uppercase, lowercase, or title case.

Fortunately, this is easy to do. The result reflects the capitalisation of your format model.

Read more

Categories Oracle Tags date format, dates, how to

Return the Short Month Name from a Date in Oracle

September 22, 2021 by Ian

In Oracle Database, we can use the TO_CHAR(datetime) function to return the various date parts from a datetime value, including the short month name.

The short month name is also referred to as the abbreviated month name. Examples of returning the short month name are below.

Read more

Categories Oracle Tags date format, dates, how to
Older posts
Newer posts
← Previous Page1 … Page21 Page22 Page23 … Page52 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved