David Carrdcblogdev.hashnode.devยทDec 9, 2013MySQL get users birthdayHere's a simple way to select all birthdays for the current date, where the date of birth is stored in a MySQL database in a DATE format, in this examples a column called 'dob' is used. SELECT username FROM users WHERE MONTH(dob) = MONTH(NOW()) AND...412 readsAdd a thoughtful commentNo comments yetBe the first to start the conversation.