In this tutorial, we will see how to get the last 15 days records in MySQL PHP. In PHP, you can use INTERVAL to get the last 15 days record from the database table. For MySQL query, we use the INTERVAL operator. It is mainly used to calculate the date and time values.
So, let's see SQL query to get last 15 days records, get 15 days data in laravel 6/7/8, how to get last 15 days data in PHP from MySQL Database.
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 order_date > now() - INTERVAL 15 day;
In the above query, we use the now() function to get the current date, and the INTERVAL() function to get the last 15 days records.
Using the below MySQL query you can get the new users in the last 15 days.
select * from users where created_at > now() - INTERVAL 15 day;
You might also like :
In this article, we will see how to show loading spinner in ajax jquery. Using ajaxStart() and ajaxStop() method we...
Jul-06-2022
In this article, we will see the laravel 9 crud with an image upload example. Here, we will learn how to image upload wi...
Dec-09-2022
In this article, we will explore the process of rolling back specific migrations in Laravel, focusing on Laravel version...
Nov-11-2022
Today, we will see laravel 8 google bar chart example, Google charts is use to visualize data on you...
Jul-23-2021