There is a table sysdistrib which store the tabid & date for the statistics updated tables.
Following query may be useful on user database.
select a.tabname, b.constructed
from systables a, sysdistrib b
where a.tabid=b.tabid
group by 1,2
-OR- run simple sql statment without group by clause...