Thanks tejsr, that was very helpful! I also changed:
$rows = $wpdb->get_results( “SELECT * FROM {$wpdb->dmtable} ORDER BY id DESC LIMIT 0,20” );
to:
$rows = $wpdb->get_results( “SELECT * FROM {$wpdb->dmtable} ORDER BY blog_id ASC LIMIT 0,250” );
Which orders the sites by blog_id in ascending order.