Thanks, It works...
$tmp_year = date('y', strtotime($record['update_date]));
I guess I was caught up in thinking the db field was a date-field so I couldn't use strtotime(). Huh!! Kicking myself now for not trying it when it crossed my brain.
list( $y, $m, $d ) = split('-', $row['update_date']); // My first choice. Doesn't work for a date field. At least not for me when I tried it. Bummer!!
I'd rather not use " year(update_date) as update_year, ..." I know this works, but just isn't feasible for what I'm doing with my query. Hard to explain...
Thanks for all the suggestions...
I'm back on track,
Cheers!
jdc44