Tables need specific accessibility patterns.
Semantic markup:
<table role="grid" aria-label="User data">
<thead>
<tr>
<th scope="col" aria-sort="ascending">Name</th>
</tr>
</thead>
<tbody>
<tr><td>John</td></tr>
</tbody>
</table>
Sort indication: Use aria-sort on sorted column.
Selection: Checkboxes need labels. Announce selection count.
Keyboard: Arrow keys navigate cells. Enter activates row.