mysql filter based on datediff

Solutions on MaxInterview for mysql filter based on datediff by the best coders in the world

showing results for - "mysql filter based on datediff"
Iyed
04 Feb 2016
1SELECT *
2FROM myTable
3WHERE birthdate >= 'date1' AND death <= 'date2' AND age > 17 AND age < 55;