I have two columns in a MySQL table:
I want to run a MySQL query that will provide date diffe
Try this:
SELECT DATEDIFF(DateOfService, BirthDate) / 30 as months FROM ...