I have narrowed the code down to this:
<?php
$authors = $wpdb->get_results('SELECT DISTINCT post_author FROM '.$wpdb->posts);
if($authors):
foreach($authors as $author):
?>
I would like the authors to be sorted Alphabetically, it doesn't matter if it sorts by first name, last name.