Object owner and create timestamp

How can I find the current owner of a table/view and also creation timestamp of the object.

The DEFINER column of INFORMATION_SCHEMA.VIEWS tells you who defined a view.

TABLES don’t have the equivalent information in INFORMATION_SCHEMA.TABLES. Anybody with permissions to do an a particular operation on a table can do it. The root user by default can do anything to a table.