skip to Main Content

Php – SQL to select persons with same birthday

I have a table (tng_people) and I want Sql to select all the people with the same birthday. I want personId, Lastname, Surname, Birthdate and deathdate. SELECT P.birthDate, DATE_FORMAT(birthDate,'%d %b %Y'), GROUP_CONCAT(CONCAT(familyName, " ",givenName)) AS PersonNames FROM person P WHERE…

VIEW QUESTION
Back To Top
Search