mysql select this month code example

Example 1: this month mysql where

SELECT *
FROM table 
WHERE MONTH(`columnName`) = MONTH(CURRENT_DATE());

Example 2: mysql select month and year

SELECT DATE_FORMAT(test_date,'%Y%m') AS date FROM test_table;

Example 3: get month from database php

echo 'Day' . date('d', strtotime($row['Date']));
echo 'Month' . date('m', strtotime($row['Date']));
echo 'Year' . date('Y', strtotime($row['Date']));

Example 4: month mysql

SELECT MONTH("2017-06-15");

Tags:

Php Example