Ad ogni tabella devi assegnare un float ed un width che non sia 100%.
Es:
Codice HTML:
<table style="border:1px brown solid; float:left; width:30%">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<table style="border:1px dodgerblue solid; float:right; width:30%">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<table style="border:1px darkcyan solid; width:40%">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
Nell'esempio ho aggiunto un bordo alle tabelle per dimostrarti che sono allineate.