Birthdays in the upcoming month : Month « Date Time « SQL / MySQL






Birthdays in the upcoming month

  
/*

mysql> select * from Bird;
+----------+-------+---------+------+------------+------------+
| name     | owner | species | sex  | birth      | death      |
+----------+-------+---------+------+------------+------------+
| BlueBird | Joe   | Car     | f    | 1999-03-30 | NULL       |
| RedBird  | Yin   | Bus     | m    | 1979-04-30 | 0000-00-00 |
| RedBird  | Yin   | Bus     | m    | 1998-01-30 | NULL       |
+----------+-------+---------+------+------------+------------+
3 rows in set (0.00 sec)

mysql> /*
mysql> Suppose that the current month is April.
mysql> */
mysql> SELECT name, birth FROM Bird WHERE MONTH(birth) = 5;
Empty set (0.01 sec)


*/
Drop table Bird;

CREATE TABLE Bird (
    name VARCHAR(20), 
    owner VARCHAR(20),
    species VARCHAR(20), 
    sex CHAR(1), 
    birth DATE, 
    death DATE
);
  
INSERT INTO  Bird VALUES ('BlueBird','Joe','Car','f','1999-03-30',NULL);
INSERT INTO  Bird VALUES ('RedBird','Yin','Bus','m','1979-04-30',1998-01-30);
INSERT INTO  Bird VALUES ('RedBird','Yin','Bus','m','1998-01-30',NULL);
  
select * from Bird;
 
  
/*
Suppose that the current month is April. 
*/

SELECT name, birth FROM Bird WHERE MONTH(birth) = 5;

           
         
    
  








Related examples in the same category

1.Have birthdays next month
2.Get month of a date
3.Use MONTH to get the month of a date
4.Use MONTHNAME in where clause
5.Use MONTH to get the month of a date 2
6.Obtaining the Current Year, Month, Day, Hour, Minute, or Second
7.Extract only the month by using the MONTH() function: MONTH()
8.To ensure that the month has two digits-as required for ISO format-use LPAD( ) to add a leading zero as necess
9.Sort by month, then by day within month