* Son Nguyen > ==> I tried this query, but... it's not working out: > SELECT YEAR(now()-birthday) from users where loginName="test";
You are very close: SELECT YEAR(now())-YEAR(birthday) as age from users where loginName="test"; -- Roger query --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php