This should be quite straight forward with standard keywords. As you’ve asked for a table:
Asset Listing page
Asset type
User + inherited
Page Contents
<table>
<tr>
<th>Asset ID</th>
<th>Username</th>
<th>Email Address</th>
<th>Last Login</th>
</tr>
%asset_listing%
</table>
User format
<tr>
<td>%asset_assetid%</td>
<td>%asset_attribute_username%</td>
<td>%asset_attribute_email%</td>
<td>%asset_attribute_login_date^date_format:j F Y% (/your preferred date format)
</tr>
Sorting
Asset Attribute Value > User > Login Date
Depending on the syntax of your usernames I would also throw in an %asset_short_name% column or similar for more readable names.
Good luck!