How To Get Current Month Records In MySQL

Websolutionstuff | Feb-08-2022 | Categories : MySQL

In this tutorial, we will see how to get current month records in MySQL. For data analysis and reporting, we need more data or records. So, we will learn how to get current month data in MySQL PHP.

For getting data for the current month in MySQL we use the month() function. MySQL month() returns the month number for a given date. The return value is from 1 to 12.

So, let's see SQL query to get current month data, get current month data in laravel 6/7/8, how to get current month data in PHP from MySQL Database.

MySQL Example :

Using SQL query to get data for the current month in MySQL.

id | order_date | amount | Orders
---+------------+--------+-------
 1 | 2022-02-01 | 150    | 2
 2 | 2022-02-02 | 200	 | 4
 3 | 2022-03-03 | 100	 | 1
 4 | 2022-03-04 | 300	 | 5
 5 | 2022-04-05 | 200 	 | 3
 7 | 2022-04-06 | 190	 | 7

 In your table, the record needs to be like date and month.

select * from users
       where MONTH(order_date) = MONTH(now())
       and YEAR(order_date) = YEAR(now());

In the above query, we use the now() function to get the current date, and the month() function to get the current month number of date values. 

 

 

How to Get New Users in the Current Month in MySQL

Using the below MySQL query you can get the new users in the current month with date and count.

select date(created_at), count(*) from users
       where MONTH(created_at) = MONTH(now())
       and YEAR(created_at) = YEAR(now())
       group by date(created_at);

 


You might also like :

Recommended Post
Featured Post
How to Create New Project in Angular 17 Example
How to Create New Project in A...

As a beginner, diving into a new framework like Angular 17 can seem daunting, but fear not! I'll guide you through c...

Read More

Mar-20-2024

Laravel 11 API Authentication using Laravel Passport
Laravel 11 API Authentication...

Hello, laravel web developers! In this article, we'll see how to API authentication in laravel 11 using a passp...

Read More

Jun-28-2024

How to Convert Word Docx to PDF in Laravel 11
How to Convert Word Docx to PD...

Hello, laravel web developers! In this article, we'll see how to convert Word doc to PDF in laravel 11. In laravel 1...

Read More

Jul-01-2024

How to Create Login and Register in Node.js
How to Create Login and Regist...

As I embarked on my journey to develop a powerful web application, I realized the importance of a robust user authentica...

Read More

Oct-02-2023