I've looked everywhere including the MySQL website but still does not seem to work for me.
From a table I have to get Name,Email and the Age from a calculation. (I have DOB).
So far I have tried.
SELECT Name,DOB,CURDATE(),
TIMESTAMPDIFF(YEAR,DOB,CURDATE()) AS Age,
FROM Editor;
Keeps giving me Null for the Age column, can anyone help please?