Looking for birthday with PHP and MySQL

birth date - mysql birthday - php mysql

getting all birthday inside database with PHP



Looking for birthday with PHP and MySQL

We often experience difficulty to find the birthday between two dates inside MySQL database. It is caused by the storage we use in MySQL, namely brith date format like Y-m-d, for example 2000-12-21.

The problem occurs when we try to find the birthday between years, such as between Dec 15, 2020 to Jan 14, 2021.

Read: Understand These Steps If You Want To Learn Javascript

To explain this, let say we use colum namely: tgl_lahir, with values as follows:

  • Jaka: 1997-02-01
  • Mega: 2001-01-14
  • Satria: 2000-12-21

Now we want to find who has birthday between January 10, 2021 and February 02, 2021. It is easier because it has same year, so we can find it with range of date and month in tgl_lahir.

The SQL query is like below

<?php
$result=doQuery("select * from [table] where (DATE_FORMAT(tgl_lahir, '%m-%d') 
BETWEEN DATE_FORMAT(?, '%m-%d') AND 
DATE_FORMAT(?, '%m-%d'))
order by RIGHT(tgl_lahir,5) ASC", Array('2021-01-10','2021-02-02'));
?>

doQuery is sql query according to mysql class we us.
BETWEEN is MySQLfunction to find data between X and Y.
order by RIGHT(tgl_lahir,5) ASC means that we sort  the result of  RIGHT(tgl_lahir,5), where RIGHT(tgl_lahir,5) is MySQL function to get 5 characters from the right. If the value is: 2001-01-14, so  RIGHT(tgl_lahir,5) is 01-14.

The result of query above is:

  • Mega: 2001-01-14
  • Jaka: 1997-02-01

The query will be different if we try to find birthday between December 20, 2020 and January 15, 2021. The query above cannot be used because it has different year.
Here it is the query:

Read: Understand These Steps If You Want To Learn Javascript
$result=doQuery("select *, if(MONTH(tgl_lahir)>MONTH('2021-01-15'), MONTH(tgl_lahir), MONTH(tgl_lahir)+12) ord,
if(DAY(tgl_lahir)>DAY('2021-01-15"'), DAY(tgl_lahir), DAY(tgl_lahir)+31) ord2
where ( (DATE_FORMAT(tgl_lahir, '%m-%d') 
	BETWEEN DATE_FORMAT(?, '%m-%d') AND 
	DATE_FORMAT(?, '%m-%d'))
OR
	(DATE_FORMAT(tgl_lahir, '%m-%d') 
	BETWEEN DATE_FORMAT(?, '%m-%d') AND 
	DATE_FORMAT(?, '%m-%d')) ) order by ord,ord2",
Array('2020-12-20','2020-12-31','2021-01-01','2021-01-15'));

There are many variables we use here.

if(MONTH(tgl_lahir)>MONTH('2021-01-15'), MONTH(tgl_lahir), MONTH(tgl_lahir)+12) means that if birth month > 01 (January), then return birth month, else it will be added 12.
The same method is used too for if(DAY(tgl_lahir)>DAY('2021-01-15"'), DAY(tgl_lahir), DAY(tgl_lahir)+31) ord2

It is used, so we can use BETWEEN function because the last date is higher than from date.

The result is as follows:

  • Satria: 2000-12-21
  • Mega: 2001-01-14


Related Article

Web Design Services - Best Webdesign - Best SEO Services

The usage of Bootstrap-DateTimePicker for Date Range

Hallo now, we as Web Design Surabaya wants to give the tutorial about the usage of bootstrap-datetimepicker for choosing check in and check out date. You do not only choose the date range but also the date and time range. To run the tutorial of date ...


5 Reasons Why You Must Learn Javascript Now

Learn more about Javascript if you are passionate about web designing and programming. We can say that Javascript is an international programming language that web programmers must master. Indeed, mastering Javascript will help you to handle some web ...


A Complete Guide For PHP Programming: All The Must-Known

PHP serves as an open-source, the server-side language for programming which can be employed to create applications, websites, relationship management systems for customers and even more by web developers in Indonesia. This is a popular general-purpo ...


We create RESPONSIVE WEBSITE

Responsive web is special program code, so the website can be read in all devices. It is very suitable for better page rank in search engine like google

graphic design in indonesia

Website Design in Indonesia

Graphic Design in Indonesia

Contact

+628113638531 / +628113865464

info@tatamedia.com

Webdesigner in Indonesia

Videographer in Bali

Office

Tatamedia Solusindo Surabaya

Dekkophotography Bali

Fine Art Photography in Bali

Web Design

Support

Send your request to

info@tatamedia.com