I have birth date data stored in Mysql table as below:
id firstname middlename lastname birth --------------------------------------------- 1 Harry Chandra Sihombing 1999-12-14 2 Janice Mona Sihombing 2010-04-20 . ... ... ... ...
How can I create a search function to collect data from the table and restrict the output to rows "where age > 25"
(and/or other function using ">"
(greater) "="
(equal).