The username field only contains data if you are using the Facebook Comments plugin on an external site. People may leave comments without being logged into Facebook. This field reflects data that the user entered when they left the comment.
Otherwise, as Stephane mentions, you need to use the fromid field and resolve this to the actual user.
I would query the profile table to get this, as it returns the owner of any ID, whether it be a page, group or user:
{
"comments": "SELECT post_fbid, fromid, time, text FROM comment WHERE post_id=\"205861559433343_336511733034991\"",
"commenters": "SELECT id, username, name FROM profile WHERE id IN (SELECT fromid FROM #comments)"
}