Sorted, i.e. resolved.
error was in the iteration,...using foreach ($myrows as $row) {
now instead.
i.e.
`global $wpdb;
$myrows = $wpdb->get_results("SELECT * FROM wp_sbbranches");
// loop through results of database query, displaying them in the table
foreach ($myrows as $row) {
echo "<tr>";
echo '<td style="border:none;">' .$row->BrId. '</td>';`