Might this be the problem? Rather than it returning the same thing, I think you might be displaying the same field twice.
Code:
<td><?php echo $row_QUERY1['order_id']; ?></td>
<td><?php echo $row_QUERY1['SKU']; ?></td>
<td><?php echo $row_QUERY1['misc3']; ?></td>
<td><?php echo $row_QUERY1['misc3']; ?></td>
<td><?php echo $row_QUERY1['quantity']; ?></td>
<td><?php echo $row_QUERY1['date_placed']; ?></td>
At the end of each of the do loops, you can add the following code which will output the exact contents of the query response:
Code:
echo '<!-- ';
print_r($row_QUERY1);
echo ' -->';